Module Values.FieldOptionSource

Object for field Options information.

Sourcetype nonrec t = {
  1. name : FieldOptionName.t;
    (*

    FieldOptionName has max length 100 and disallows trailing spaces.

    *)
  2. value : FieldOptionValue.t;
    (*

    FieldOptionValue has max length 100 and must be alphanumeric with hyphens and underscores.

    *)
  3. active : Boolean.t;
    (*

    Describes whether the FieldOption is active (displayed) or inactive.

    *)
}
Sourceval context_ : string
Sourceval make : name:FieldOptionName.t -> value:FieldOptionValue.t -> active:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of FieldOptionName.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