Module Values.MessageTemplateContentProviderSource

The container of message template content.

Sourcetype nonrec t = {
  1. email : EmailMessageTemplateContent.t option;
    (*

    The content of the message template that applies to the email channel subtype.

    *)
  2. sms : SMSMessageTemplateContent.t option;
    (*

    The content of the message template that applies to the SMS channel subtype.

    *)
  3. whatsApp : WhatsAppMessageTemplateContent.t option;
    (*

    The content of the message template that applies to the WHATSAPP channel subtype.

    *)
  4. push : PushMessageTemplateContent.t option;
}
Sourceval make : ?email:??? -> ?sms:??? -> ?whatsApp:??? -> ?push:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of EmailHeaderKey.t ]) list ] list | `String of NonEmptyUnlimitedString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyUnlimitedString.t | `Structure of (string * [> `String of NonEmptyUnlimitedString.t ]) list ]) 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