Module Values.CopyValueEntrySource

This object defines one value to be copied with the copyValue processor.

Sourcetype nonrec t = {
  1. source : Source.t;
    (*

    The key to copy.

    *)
  2. target : Target.t;
    (*

    The key of the field to copy the value to.

    *)
  3. overwriteIfExists : OverwriteIfExists.t option;
    (*

    Specifies whether to overwrite the value if the destination key already exists. If you omit this, the default is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?overwriteIfExists:??? -> source:Source.t -> target:Target.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OverwriteIfExists.t | `String of Source.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t