IdPlaceLocation
data class IdPlaceLocation(val id: String, val level: Int?, val floorId: String? = null, val buildingId: String? = null)Lightweight identifier that associates a place with a specific vertical level (floor).
Used when the SDK needs to reference a place by its unique id together with an optional level for multi-story buildings, without carrying full location coordinates.
See also
| LzLocation |
Constructors
IdPlaceLocation | constructor(jsonObject: JSONObject ) |
IdPlaceLocation | constructor(id: String , level: Int ?, floorId: String ? = null, buildingId: String ? = null) |
Properties
buildingId
val buildingId: String? = nullfloorId
val floorId: String? = nullid
val id: StringUnique identifier of the place.
level
val level: Int?Floor/level number within the place, or null if the place is single-story or the level is unknown.
Last updated on