Module Values.BatchEvaluateGeofencesErrorSource

Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.

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

    The device associated with the position evaluation error.

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

    Specifies a timestamp for when the error occurred in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

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

    Contains details associated to the batch error.

    *)
}
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