Module Values.PushMessageTemplateContentSource

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

Sourcetype nonrec t = {
  1. adm : PushADMMessageTemplateContent.t option;
    (*

    The content of the message template that applies to ADM (Amazon Device Messaging) notification service.

    *)
  2. apns : PushAPNSMessageTemplateContent.t option;
    (*

    The content of the message template that applies to APNS(Apple Push Notification service) notification service.

    *)
  3. fcm : PushFCMMessageTemplateContent.t option;
    (*

    The content of the message template that applies to FCM (Firebase Cloud Messaging) notification service.

    *)
  4. baidu : PushBaiduMessageTemplateContent.t option;
    (*

    The content of the message template that applies to Baidu notification service.

    *)
}
Sourceval make : ?adm:??? -> ?apns:??? -> ?fcm:??? -> ?baidu:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of NonEmptyUnlimitedString.t | `Structure of (string * [> `String of NonEmptyUnlimitedString.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