Module Values.MessageTemplateAttributesSource

The attributes that are used with the message template.

Sourcetype nonrec t = {
  1. systemAttributes : SystemAttributes.t option;
    (*

    The system attributes that are used with the message template.

    *)
  2. agentAttributes : AgentAttributes.t option;
    (*

    The agent attributes that are used with the message template.

    *)
  3. customerProfileAttributes : CustomerProfileAttributes.t option;
    (*

    The customer profile attributes that are used with the message template.

    *)
  4. customAttributes : CustomAttributes.t option;
    (*

    The custom attributes that are used with the message template.

    *)
}
Sourceval make : ?systemAttributes:??? -> ?agentAttributes:??? -> ?customerProfileAttributes:??? -> ?customAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MessageTemplateAttributeKey.t ] * [> `String of MessageTemplateAttributeValue.t ]) list | `Structure of (string * [> `Map of ([> `String of MessageTemplateAttributeKey.t ] * [> `String of MessageTemplateAttributeValue.t ]) list | `String of MessageTemplateAttributeValue.t | `Structure of (string * [> `String of MessageTemplateAttributeValue.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