Module Values_1.NewDefaultValuesSource

The configuration that overrides the existing default values for a dataset parameter that is inherited from another dataset.

Sourcetype nonrec t = {
  1. stringStaticValues : StringDatasetParameterValueList.t option;
    (*

    A list of static default values for a given string parameter.

    *)
  2. decimalStaticValues : DecimalDatasetParameterValueList.t option;
    (*

    A list of static default values for a given decimal parameter.

    *)
  3. dateTimeStaticValues : DateTimeDatasetParameterValueList.t option;
    (*

    A list of static default values for a given date time parameter.

    *)
  4. integerStaticValues : IntegerDatasetParameterValueList.t option;
    (*

    A list of static default values for a given integer parameter.

    *)
}
Sourceval make : ?stringStaticValues:??? -> ?decimalStaticValues:??? -> ?dateTimeStaticValues:??? -> ?integerStaticValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of DecimalDatasetParameterDefaultValue.t | `Long of IntegerDatasetParameterDefaultValue.t | `String of StringDatasetParameterDefaultValue.t | `Timestamp of DateTimeDatasetParameterDefaultValue.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