ExpoFpFloor

@Serializable
data class ExpoFpFloor(val name: String, val shortName: String = "", val description: String = "", val index: Int, val isActive: Boolean = false, val isDisabled: Boolean = false)

Information about a floor on a plan.

Constructors

Link copied to clipboard
constructor(name: String, shortName: String = "", description: String = "", index: Int, isActive: Boolean = false, isDisabled: Boolean = false)

Properties

Link copied to clipboard

A textual representation of this instance.

Link copied to clipboard
val id: Int

The same as floor index on the plan.

Link copied to clipboard
val index: Int

Floor index on the plan.

Link copied to clipboard
@SerialName(value = "active")
val isActive: Boolean = false

Indicates whether this floor is the current floor. (JSON key: "active")

Link copied to clipboard
@SerialName(value = "disabled")
val isDisabled: Boolean = false

Indicates whether this floor can become active. (JSON key: "disabled")

Link copied to clipboard

Floor name.

Link copied to clipboard

Floor short name.