Module Values.FieldConfigSource

Describes the configuration information for a field in a table.

Sourcetype nonrec t = {
  1. label : String_.t option;
    (*

    The label for the field.

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

    Specifies the field position.

    *)
  3. excluded : Boolean.t option;
    (*

    Specifies whether to hide a field.

    *)
  4. inputType : FieldInputConfig.t option;
    (*

    Describes the configuration for the default input value to display for a field.

    *)
  5. validations : ValidationsList.t option;
    (*

    The validations to perform on the value in the field.

    *)
}
Sourceval make : ?label:??? -> ?position:??? -> ?excluded:??? -> ?inputType:??? -> ?validations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `List of [> `Integer of Integer.t | `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Float of Float_.t | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * Awso.Botodata.value) list ] list | `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) list ]) list ]) 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