Module Values.FormButtonSource

Describes the configuration for a button UI element that is a part of a form.

Sourcetype nonrec t = {
  1. excluded : Boolean.t option;
    (*

    Specifies whether the button is visible on the form.

    *)
  2. children : String_.t option;
    (*

    Describes the button's properties.

    *)
  3. position : FieldPosition.t option;
    (*

    The position of the button.

    *)
}
Sourceval make : ?excluded:??? -> ?children:??? -> ?position:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) 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