Skip to content

Data types

Every type is a Swift struct decoded from the engine’s dictionaries. Fields the engine may legitimately omit are optional; fields it always sends are not. Where a field is optional, that optionality is load-bearing — see the note at the end.

Location

The payload of onLocation, the return of getCurrentPosition(), and the record shape in the upload queue.

FieldTypeNotes
uuidStringStable per record; the handle destroyLocation() takes.
timestampStringISO 8601, UTC.
ageDouble?Milliseconds between the fix being taken and processed.
odometerDoubleCumulative metres since the last reset.
coordsCoordsSee below.
activityMotionActivityClassification at the time of the fix.
batteryBatteryLevel and charging state.
isMovingBoolThe motion machine’s verdict for this fix.
sampleBool?true for a getCurrentPosition() sample that was not persisted.
eventString?"motionchange", "heartbeat", "geofence", or absent for an ordinary fix.
extras[String: Any]?Whatever you attached via config or getCurrentPosition(extras = …).

Coords

FieldTypeNotes
latitudeDouble
longitudeDouble
accuracyDoubleHorizontal radius, metres — the number the accuracy gate filters on.
altitudeDouble?Metres above sea level.
altitudeAccuracyDouble?
speedDouble?m/s. -1 means “unknown” on some devices; treat negatives as absent.
speedAccuracyDouble?
headingDouble?Degrees; negative means unknown.
headingAccuracyDouble?
ellipsoidalAltitudeDouble?Height above the WGS84 ellipsoid, where the device reports it.

MotionActivity

FieldTypeNotes
typeActivityTypeSTILL, WALKING, IN_VEHICLE, …
confidenceInt0–100, from Play Services activity recognition.

The engine ignores a classification below minimumActivityRecognitionConfidence (75 by default) when deciding motion state, so a low-confidence IN_VEHICLE does not by itself wake tracking.

Battery

FieldTypeNotes
levelDouble0.0–1.0. -1 means unknown — guard before showing a percentage.
isChargingBool

State

Returned by ready(), setConfig(), start(), stop() and getState().

FieldTypeNotes
enabledBoolWhether tracking is on. This is the persisted intent, not “is a fix arriving right now”.
raw[String: Any]Everything else the engine reported.

raw is deliberately untyped: it is a superset of health and diagnostic fields that grows with the engine, and a typed class would have to be released in lockstep to stay honest. Read it with state["key"], which returns null for both an absent key and a JSON null:

let state = await BackgroundGeolocation.getState()
let trackingActive = state["trackingActive"] as? Bool
let lastFixAge = state["lastAcceptedFixAge"] as? Double // seconds, nil until a fix arrives

Fields the iOS engine reports today: enabled, trackingMode, isMoving, odometer, trackingActive, authorization, lastRawFixAge, lastAcceptedFixAge, lastLocationError, locationFailureCount, backgroundRearmCount, watchdogRecoveryCount, wakeRearmCount, stationaryRegionArmed, monitoredWakeRegions, lastWakeError, rawFixCount, acceptedFixCount, rejectedFixCount, lastRejectReason, sessionEngineActive, serviceSessionActive, geofenceCount, lastGeofenceError, connected.

The two fix ages are in seconds and nil until the first fix — the raw one is stamped before the location filter runs and the accepted one after, so the pair separates “CoreLocation stopped delivering” from “the filter is rejecting everything”. That distinction is the first fork of every field investigation, and rawFixCount/acceptedFixCount/rejectedFixCount/lastRejectReason answer the follow-up.

sessionEngineActive tells you which delivery path is live (see useSessionEngine), and serviceSessionActive whether the iOS 18+ CLServiceSession is held.

ProviderState

From getProviderState(), and the payload of onProviderChange.

FieldTypeNotes
statusAuthorizationStatusThe grant.
enabledBoolLocation services on at all.
gpsBoolGPS provider enabled.
networkBoolNetwork provider enabled.
accuracyAuthorizationAccuracyAuthorization?REDUCED when the user granted approximate location only.

Geofence

FieldTypeNotes
identifierStringYours; unique. Re-adding the same identifier replaces the fence.
radiusDoubleMetres. Under ~100 m, expect the OS to report crossings late.
latitude / longitudeDouble
notifyOnEntryBool?Defaults to true engine-side.
notifyOnExitBool?Defaults to true engine-side.
notifyOnDwellBool?Requires loiteringDelay.
loiteringDelayDouble?Milliseconds inside the radius before DWELL fires.
extras[String: Any]?Echoed back on every event for this fence.

Event payloads

MotionChangeEvent

FieldTypeNotes
isMovingBool
locationLocation?Nil on the first motionchange of a tracking session — the engine has no accepted fix yet.

GeofenceEvent

FieldTypeNotes
identifierString
actionGeofenceAction.enter, .exit, .dwell.
locationLocationThe last accepted fix when the OS delivered the transition — not the point where the boundary was crossed.
extras[String: Any]?From the geofence definition.

GeofencesChangeEvent

FieldTypeNotes
on[Geofence]Now being monitored by the OS.
off[Geofence]No longer monitored.

iOS allows 20 monitored regions per app and the engine spends one on its own wake region, so 19 of yours are armed at a time. It keeps the nearest ones registered and swaps as you move. This event is how you see that happen; the fences you added all still exist.

HttpEvent

FieldTypeNotes
successBool2xx.
statusIntHTTP status; 0 means a network-level failure, not a server response.
responseTextStringBody, truncated to 1024 chars. Logged verbatim — do not put secrets in error bodies.

ConnectivityChangeEvent

FieldType
connectedBool

Validated connectivity, not merely “an interface is up” — a captive portal reads as disconnected.

LocationErrorEvent

FieldTypeNotes
codeStringe.g. LICENSE_MISSING, or a CoreLocation error code.
messageString?

The payload of onLocationError. code arrives as either a string or a number depending on which engine call site emitted it, and is normalised to a string here — so a caller can switch on it without knowing which path produced the failure.

HeartbeatEvent

FieldType
raw[String: Any]

Option classes

CurrentPositionOptions

FieldTypeNotes
persistBool?Whether the fix enters the upload queue.
samplesInt?How many fixes to collect before returning the best.
timeoutDouble?Seconds.
maximumAgeDouble?Milliseconds; accept a cached fix younger than this.
desiredAccuracyInt?Overrides config for this call.
extras[String: Any]?Attached to the returned record.

WatchPositionOptions

FieldType
intervalDouble?
desiredAccuracyInt?
persistBool?
extras[String: Any]?

getAuthState()‘s tuple

(accessToken: String?, refreshToken: String?) — a tuple rather than a named type, because it exists only to answer one question.

The engine’s current token pair after a native refresh — read it with getAuthState() when your app needs to stay in step with tokens the SDK rotated on its own. See HTTP & authorization.

LogEntry

FieldTypeNotes
tsStringISO 8601.
levelInt1=ERROR … 5=VERBOSE.
srcString"native" for engine lines.
eventStringDot-namespaced (track.start, wake.rearm) for engine diagnostics.
messageString?
dataAny?Parsed JSON, not a string.

A note on optionality

Optional fields here are not defensive padding. MotionChangeEvent.location really is absent on the first motion change of a session, and isMoving arrives as null from the engine while motion is still being probed — up to stopTimeout minutes after every start().

That last one has history: this SDK originally declared isMoving non-optional, on the strength of a TypeScript interface that said boolean, and dropped every location for the first minutes of every session — while the server received them all, because the upload path never touches the decoder. If a field is optional in this table, the engine can and does send nothing for it.