Module Values_0.IntegerParameterRangeSpecificationSource

Defines the possible values for an integer hyperparameter.

Sourcetype nonrec t = {
  1. minValue : ParameterValue.t;
    (*

    The minimum integer value allowed.

    *)
  2. maxValue : ParameterValue.t;
    (*

    The maximum integer value allowed.

    *)
}
Sourceval context_ : string
Sourceval make : minValue:ParameterValue.t -> maxValue:ParameterValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterValue.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