Module Values_0.AssetPropertyValueSource

An asset property value entry containing the following information.

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

    The value of the asset property.

    *)
  2. timestamp : AssetPropertyTimestamp.t;
    (*

    The asset property value timestamp.

    *)
  3. quality : AssetPropertyQuality.t option;
    (*

    Optional. A string that describes the quality of the value. Accepts substitution templates. Must be GOOD, BAD, or UNCERTAIN.

    *)
}
Sourceval context_ : string
Sourceval make : ?quality:??? -> value:AssetPropertyVariant.t -> timestamp:AssetPropertyTimestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssetPropertyQuality.t | `Structure of (string * [> `String of AssetPropertyStringValue.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