Module Values.WhatsAppMessageTemplateSourceConfigurationSummarySource

Configuration information about the external data source.

Sourcetype nonrec t = {
  1. businessAccountId : WhatsAppBusinessAccountId.t option;
    (*

    The ID of the End User Messaging WhatsApp Business Account to associate with this template.

    *)
  2. templateId : WhatsAppMessageTemplateId.t option;
    (*

    The ID of WhatsApp template.

    *)
  3. name : WhatsAppMessageTemplateName.t option;
    (*

    The name of the WhatsApp template.

    *)
  4. language : WhatsAppMessageTemplateLanguage.t option;
    (*

    The language of the WhatsApp template.

    *)
  5. components : WhatsAppMessageTemplateComponents.t option;
    (*

    The list of component mapping from WhatsApp template parameters to Message Template attributes.

    *)
  6. status : WhatsAppSourceConfigurationStatus.t option;
    (*

    The status of the message template.

    *)
  7. statusReason : NonEmptyUnlimitedString.t option;
    (*

    The status reason of the message template.

    *)
}
Sourceval make : ?businessAccountId:??? -> ?templateId:??? -> ?name:??? -> ?language:??? -> ?components:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of WhatsAppMessageTemplateComponent.t ] list | `String of WhatsAppBusinessAccountId.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