Braze Geofence
class BrazeGeofence(val jsonObject: JSONObject = JSONObject(), val id: String, val latitude: Double, val longitude: Double, val radiusMeter: Int, val cooldownEnterSeconds: Int, val cooldownExitSeconds: Int, val analyticsEnabledEnter: Boolean, val analyticsEnabledExit: Boolean, val enterEvents: Boolean, val exitEvents: Boolean, val notificationResponsivenessMs: Int) : IPutIntoJson<JSONObject?> , Comparable<BrazeGeofence>
Represents a Braze geofence region with coordinates, radius, and transition cooldown configuration.
Constructors
Link copied to clipboard
internal constructor(jsonObject: JSONObject = JSONObject(), id: String, latitude: Double, longitude: Double, radiusMeter: Int, cooldownEnterSeconds: Int, cooldownExitSeconds: Int, analyticsEnabledEnter: Boolean, analyticsEnabledExit: Boolean, enterEvents: Boolean, exitEvents: Boolean, notificationResponsivenessMs: Int)