Module Values_0.CustomParameterValuesSource

The customized parameter values. This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Sourcetype nonrec t = {
  1. stringValues : StringDefaultValueList.t option;
    (*

    A list of string-type parameter values.

    *)
  2. integerValues : IntegerDefaultValueList.t option;
    (*

    A list of integer-type parameter values.

    *)
  3. decimalValues : DecimalDefaultValueList.t option;
    (*

    A list of decimal-type parameter values.

    *)
  4. dateTimeValues : DateTimeDefaultValueList.t option;
    (*

    A list of datetime-type parameter values.

    *)
}
Sourceval make : ?stringValues:??? -> ?integerValues:??? -> ?decimalValues:??? -> ?dateTimeValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of SensitiveDoubleObject.t | `Long of SensitiveLongObject.t | `String of SensitiveStringObject.t | `Timestamp of SensitiveTimestamp.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