Module Values.UpdateContactRequestSource

Updates a specific contact.

Sourcetype nonrec t = {
  1. contactId : Uuid.t;
    (*

    UUID of a contact.

    *)
  2. clientToken : ClientToken.t option;
    (*

    A client token is a unique, case-sensitive string of up to 64 ASCII characters. It is generated by the client to ensure idempotent operations, allowing safe retries without unintended side effects.

    *)
  3. trackingOverrides : TrackingOverrides.t option;
  4. satelliteArn : SatelliteArn.t option;
    (*

    ARN of a satellite.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?trackingOverrides:??? -> ?satelliteArn:??? -> contactId:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `String of Uuid.t ]) list ]) list ]) list ]) 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