Module Values_0.AllowedValueSource

An object representing a value allowed for a property.

Sourcetype nonrec t = {
  1. description : AllowedValueDescriptionString.t option;
    (*

    A description of the allowed value.

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

    The value allowed for the property.

    *)
}
Sourceval make : ?description:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AllowedValueDescriptionString.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