Module Values_0.AssetPropertyVariantSource

Contains an asset property value (of a single type).

Sourcetype nonrec t = {
  1. stringValue : AssetPropertyStringValue.t option;
    (*

    Optional. The string value of the value entry. Accepts substitution templates.

    *)
  2. integerValue : AssetPropertyIntegerValue.t option;
    (*

    Optional. A string that contains the integer value of the value entry. Accepts substitution templates.

    *)
  3. doubleValue : AssetPropertyDoubleValue.t option;
    (*

    Optional. A string that contains the double value of the value entry. Accepts substitution templates.

    *)
  4. booleanValue : AssetPropertyBooleanValue.t option;
    (*

    Optional. A string that contains the boolean value (true or false) of the value entry. Accepts substitution templates.

    *)
}
Sourceval make : ?stringValue:??? -> ?integerValue:??? -> ?doubleValue:??? -> ?booleanValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssetPropertyStringValue.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