Module Values.AssetPropertyValueSource

Contains asset property value information.

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

    The value of the asset property (see Variant).

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

    The timestamp of the asset property value.

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

    The quality of the asset property value.

    *)
}
Sourceval context_ : string
Sourceval make : ?quality:??? -> value:Variant.t -> timestamp:TimeInNanos.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of PropertyValueBooleanValue.t | `Double of PropertyValueDoubleValue.t | `Integer of PropertyValueIntegerValue.t | `Long of TimeInSeconds.t | `String of PropertyValueStringValue.t | `Structure of (string * [> `Enum of string ]) list ]) 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