Module Values.BatchGetAssetPropertyAggregatesErrorEntrySource

Contains error information for an asset property aggregate entry that is associated with the BatchGetAssetPropertyAggregates API.

Sourcetype nonrec t = {
  1. errorCode : BatchGetAssetPropertyAggregatesErrorCode.t option;
    (*

    The error code.

    *)
  2. errorMessage : ErrorMessage.t option;
    (*

    The associated error message.

    *)
  3. entryId : EntryId.t option;
    (*

    The ID of the entry.

    *)
}
Sourceval make : ?errorCode:??? -> ?errorMessage:??? -> ?entryId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorMessage.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