Module Values.UpdateFormDataSource

Updates and saves all of the information about a form, based on form ID.

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

    The name of the form.

    *)
  2. dataType : FormDataTypeConfig.t option;
    (*

    The type of data source to use to create the form.

    *)
  3. formActionType : FormActionType.t option;
    (*

    Specifies whether to perform a create or update action on the form.

    *)
  4. fields : FieldsMap.t option;
    (*

    The configuration information for the form's fields.

    *)
  5. style : FormStyle.t option;
    (*

    The configuration for the form's style.

    *)
  6. sectionalElements : SectionalElementMap.t option;
    (*

    The configuration information for the visual helper elements for the form. These elements are not associated with any data.

    *)
  7. schemaVersion : String_.t option;
    (*

    The schema version of the form.

    *)
  8. cta : FormCTA.t option;
    (*

    The FormCTA object that stores the call to action configuration for the form.

    *)
  9. labelDecorator : LabelDecorator.t option;
    (*

    Specifies an icon or decoration to display on the form.

    *)
}
Sourceval make : ?name:??? -> ?dataType:??? -> ?formActionType:??? -> ?fields:??? -> ?style:??? -> ?sectionalElements:??? -> ?schemaVersion:??? -> ?cta:??? -> ?labelDecorator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.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 ]) list | `String of FormName.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) 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