Module Values.FormInputBindingPropertiesValueSource

Represents the data binding configuration for a form's input fields at runtime.You can use FormInputBindingPropertiesValue to add exposed properties to a form to allow different values to be entered when a form is reused in different places in an app.

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

    The property type.

    *)
  2. bindingProperties : FormInputBindingPropertiesValueProperties.t option;
    (*

    Describes the properties to customize with data at runtime.

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