Module Values.SystemAttributesSource

The system attributes that are used with the message template.

Sourcetype nonrec t = {
  1. name : MessageTemplateAttributeValue.t option;
    (*

    The name of the task.

    *)
  2. customerEndpoint : SystemEndpointAttributes.t option;
    (*

    The CustomerEndpoint attribute.

    *)
  3. systemEndpoint : SystemEndpointAttributes.t option;
    (*

    The SystemEndpoint attribute.

    *)
}
Sourceval make : ?name:??? -> ?customerEndpoint:??? -> ?systemEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MessageTemplateAttributeValue.t | `Structure of (string * [> `String of MessageTemplateAttributeValue.t ]) 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