Module Values_0.QuickConnectContactDataSource

Contact data associated with quick connect operations.

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

    The contact ID for quick connect contact data.

    *)
  2. initiationTimestamp : string option;
    (*

    Timestamp when the quick connect contact was initiated.

    *)
  3. quickConnectId : QuickConnectId.t option;
    (*

    The quick connect ID.

    *)
  4. quickConnectName : QuickConnectName.t option;
    (*

    The name of the quick connect.

    *)
  5. quickConnectType : QuickConnectType.t option;
    (*

    The type of the quick connect.

    *)
}
Sourceval make : ?contactId:??? -> ?initiationTimestamp:??? -> ?quickConnectId:??? -> ?quickConnectName:??? -> ?quickConnectType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ContactId.t | `Timestamp of string ]) 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