Module Values_0.UserPropertySource

A key-value pair that you define in the header. Both the key and the value are either literal strings or valid substitution templates.

Sourcetype nonrec t = {
  1. key : UserPropertyKey.t;
    (*

    A key to be specified in UserProperty.

    *)
  2. value : UserPropertyValue.t;
    (*

    A value to be specified in UserProperty.

    *)
}
Sourceval context_ : string
Sourceval make : key:UserPropertyKey.t -> value:UserPropertyValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserPropertyKey.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