Module Values.ReplacementTemplateSource

An object which contains ReplacementTemplateData to be used for a specific BulkEmailEntry.

Sourcetype nonrec t = {
  1. replacementTemplateData : EmailTemplateData.t option;
    (*

    A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.

    *)
}
Sourceval make : ?replacementTemplateData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EmailTemplateData.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