Module Values_0.ContactConfigurationSource

The contact configuration for push notification registration.

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

    The identifier of the contact within the Amazon Connect instance.

    *)
  2. participantRole : ParticipantRole.t option;
    (*

    The role of the participant in the chat conversation. Only CUSTOMER is currently supported. Any other values other than CUSTOMER will result in an exception (4xx error).

    *)
  3. includeRawMessage : IncludeRawMessage.t option;
    (*

    Whether to include raw connect message in the push notification payload. Default is False.

    *)
}
Sourceval context_ : string
Sourceval make : ?participantRole:??? -> ?includeRawMessage:??? -> contactId:ContactId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IncludeRawMessage.t | `Enum of string | `String of ContactId.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