Module Values_1.DecimalDatasetParameterSource

A decimal parameter for a dataset.

Sourcetype nonrec t = {
  1. id : DatasetParameterId.t;
    (*

    An identifier for the decimal parameter created in the dataset.

    *)
  2. name : DatasetParameterName.t;
    (*

    The name of the decimal parameter that is created in the dataset.

    *)
  3. valueType : DatasetParameterValueType.t;
    (*

    The value type of the dataset parameter. Valid values are single value or multi value.

    *)
  4. defaultValues : DecimalDatasetParameterDefaultValues.t option;
    (*

    A list of default values for a given decimal parameter. This structure only accepts static values.

    *)
}
Sourceval context_ : string
Sourceval make : ?defaultValues:??? -> id:DatasetParameterId.t -> name:DatasetParameterName.t -> valueType:DatasetParameterValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DatasetParameterId.t | `Structure of (string * [> `List of [> `Double of DecimalDatasetParameterDefaultValue.t ] list ]) 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