Module Values.ComponentDataConfigurationSource

Describes the configuration for binding a component's properties to data.

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

    The name of the data model to use to bind data to a component.

    *)
  2. sort : SortPropertyList.t option;
    (*

    Describes how to sort the component's properties.

    *)
  3. predicate : Predicate.t option;
    (*

    Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.

    *)
  4. identifiers : IdentifierList.t option;
    (*

    A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.

    *)
}
Sourceval context_ : string
Sourceval make : ?sort:??? -> ?predicate:??? -> ?identifiers:??? -> model:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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