Skip to Content
API ReferenceModelsIdPlaceLocation

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

IdPlaceLocationconstructor(jsonObject: JSONObject )
IdPlaceLocationconstructor(id: String , level: Int ?, floorId: String ? = null, buildingId: String ? = null)

Properties

buildingId

val buildingId: String? = null

floorId

val floorId: String? = null

id

val id: String

Unique 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