Module Values.ConflictResolutionSource

How the auto-merging process should resolve conflicts between different profiles.

Sourcetype nonrec t = {
  1. conflictResolvingModel : ConflictResolvingModel.t;
    (*

    How the auto-merging process should resolve conflicts between different profiles. RECENCY: Uses the data that was most recently updated. SOURCE: Uses the data from a specific source. For example, if a company has been aquired or two departments have merged, data from the specified source is used. If two duplicate profiles are from the same source, then RECENCY is used again.

    *)
  2. sourceName : String1To255.t option;
    (*

    The ObjectType name that is used to resolve profile merging conflicts when choosing SOURCE as the ConflictResolvingModel.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceName:??? -> conflictResolvingModel:ConflictResolvingModel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String1To255.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