Module Values.ComponentBindingPropertiesValueSource

Represents the data binding configuration for a component at runtime. You can use ComponentBindingPropertiesValue to add exposed properties to a component to allow different values to be entered when a component is reused in different places in an app.

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

    The property type.

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

    Describes the properties to customize with data at runtime.

    *)
  3. defaultValue : String_.t option;
    (*

    The default value of the property.

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