Module Values.DataBindingValueSource

Represents a value used in a data binding. It can be an asset property or an asset model property.

Sourcetype nonrec t = {
  1. assetModelProperty : AssetModelPropertyBindingValue.t option;
  2. assetProperty : AssetPropertyBindingValue.t option;
    (*

    The asset property value used in the data binding.

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