Module Values.RelatedItemInputContentSource

Represents the content of a related item to be created.

Sourcetype nonrec t = {
  1. contact : Contact.t option;
    (*

    Object representing a contact in Amazon Connect as an API request field.

    *)
  2. comment : CommentContent.t option;
    (*

    Represents the content of a comment to be returned to agents.

    *)
  3. file : FileContent.t option;
    (*

    A file of related items.

    *)
  4. sla : SlaInputContent.t option;
    (*

    Represents the content of an SLA to be created.

    *)
  5. connectCase : ConnectCaseInputContent.t option;
    (*

    Represents the Amazon Connect case to be created as a related item.

    *)
  6. custom : CustomInputContent.t option;
    (*

    Represents the content of a Custom type related item.

    *)
}
Sourceval make : ?contact:??? -> ?comment:??? -> ?file:??? -> ?sla:??? -> ?connectCase:??? -> ?custom:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) list ] list | `String of ContactArn.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'b list ]) list ] list | `Long of TargetSlaMinutes.t | `String of SlaName.t ]) 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