Module Values.AssetPropertyBindingValueSource

Represents a data binding value referencing a specific asset property. It's used to bind computation model variables to actual asset property values for processing.

Sourcetype nonrec t = {
  1. assetId : ID.t;
    (*

    The ID of the asset containing the property. This identifies the specific asset instance's property value used in the computation model.

    *)
  2. propertyId : ID.t;
    (*

    The ID of the property within the asset. This identifies the specific property's value used in the computation model.

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