Module Values_1.RangeConstantSource

A structure that represents a range constant.

Sourcetype nonrec t = {
  1. minimum : Values_0.LimitedString.t option;
    (*

    The minimum value for a range constant.

    *)
  2. maximum : Values_0.LimitedString.t option;
    (*

    The maximum value for a range constant.

    *)
}
Sourceval make : ?minimum:??? -> ?maximum:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.LimitedString.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