Module Values.BatchGetAssetPropertyAggregatesSuccessEntrySource

Contains success information for an entry that is associated with the BatchGetAssetPropertyAggregates API.

Sourcetype nonrec t = {
  1. entryId : EntryId.t option;
    (*

    The ID of the entry.

    *)
  2. aggregatedValues : AggregatedValues.t option;
    (*

    The requested aggregated asset property values (for example, average, minimum, and maximum).

    *)
}
Sourceval make : ?entryId:??? -> ?aggregatedValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of AggregatedDoubleValue.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of EntryId.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