Module Values.BatchPutGeofenceSuccessSource

Contains a summary of each geofence that was successfully stored in a given geofence collection.

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

    The geofence successfully stored in a geofence collection.

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

    The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

    *)
  3. updateTime : Timestamp.t option;
    (*

    The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

    *)
}
Sourceval make : ?geofenceId:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `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