Module Values.FormInputValueProperty

Describes the configuration for an input field on a form. Use FormInputValueProperty to specify the values to render or bind by default.

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

    The value to assign to the input field.

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

    The information to bind fields to data at runtime.

    *)
  3. concat : FormInputValuePropertyList.t option;
    (*

    A list of form properties to concatenate to create the value to assign to this field property.

    *)
}
Sourceval make : ?value:String_.t -> ?bindingProperties:FormInputValuePropertyBindingProperties.t -> ?concat:FormInputValuePropertyList.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t