Module Values_1.TopicConstantValueSource

The definition for a TopicConstantValue.

Sourcetype nonrec t = {
  1. constantType : ConstantType.t option;
    (*

    The constant type of a TopicConstantValue.

    *)
  2. value : ConstantValueString.t option;
    (*

    The value of the TopicConstantValue.

    *)
  3. minimum : ConstantValueString.t option;
    (*

    The minimum for the TopicConstantValue.

    *)
  4. maximum : ConstantValueString.t option;
    (*

    The maximum for the TopicConstantValue.

    *)
  5. valueList : CollectiveConstantEntryList.t option;
    (*

    The value list of the TopicConstantValue.

    *)
}
Sourceval make : ?constantType:??? -> ?value:??? -> ?minimum:??? -> ?maximum:??? -> ?valueList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ConstantValueString.t ]) list ] list | `String of ConstantValueString.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