Module Values_2.TemplateAttributesSource

Information about the template attributes.

Sourcetype nonrec t = {
  1. customAttributes : Values_0.Attributes.t option;
    (*

    An object that specifies the custom attributes values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template.

    *)
  2. customerProfileAttributes : Values_1.CustomerProfileAttributesSerialized.t option;
    (*

    An object that specifies the customer profile attributes values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template.

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