Module Values.FormInputValuePropertyBindingPropertiesSource

Associates a form property to a binding property. This enables exposed properties on the top level form to propagate data to the form's property values.

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

    The form property to bind to the data field.

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

    The data field to bind the property to.

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