RegistrationFailed

data class RegistrationFailed(val failedIds: List<String>, val cause: Throwable? = null) : AFGeofenceEvent

Indicates a partial registration failure: some geofences in a batched registration call were rejected by the platform while others succeeded. Distinct from Error so consumers can implement targeted retry logic (re-register only the failed IDs) instead of falling back to a full stop/start cycle.

Constructors

Link copied to clipboard
constructor(failedIds: List<String>, cause: Throwable? = null)

Properties

Link copied to clipboard

Underlying platform exception, when available.

Link copied to clipboard

Geofence IDs that the platform refused to register.