Module Values.BatchUpdateDevicePositionErrorSource

Contains error details for each device that failed to update its position.

Sourcetype nonrec t = {
  1. deviceId : Id.t option;
    (*

    The device associated with the failed location update.

    *)
  2. sampleTime : Timestamp.t option;
    (*

    The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

    *)
  3. error : BatchItemError.t option;
    (*

    Contains details related to the error code such as the error code and error message.

    *)
}
Sourceval make : ?deviceId:??? -> ?sampleTime:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.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