Module Values.VariantSource

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

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

    Asset property data of type string (sequence of characters). The allowed pattern: "^$|[^\u0000-\u001F\u007F]+". The max length is 1024.

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

    Asset property data of type integer (whole number).

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

    Asset property data of type double (floating point number). The min value is -10^10. The max value is 10^10. Double.NaN is allowed.

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

    Asset property data of type Boolean (true or false).

    *)
  5. nullValue : PropertyValueNullValue.t option;
    (*

    The type of null asset property data with BAD and UNCERTAIN qualities.

    *)
}
Sourceval make : ?stringValue:??? -> ?integerValue:??? -> ?doubleValue:??? -> ?booleanValue:??? -> ?nullValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of PropertyValueBooleanValue.t | `Double of PropertyValueDoubleValue.t | `Integer of PropertyValueIntegerValue.t | `String of PropertyValueStringValue.t | `Structure of (string * [> `Enum of string ]) 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