ExpoFpBooth

@Serializable
data class ExpoFpBooth(val id: Int, val name: String = "", val layer: ExpoFpLayer = ExpoFpLayer(), val externalId: String = "", val isSpecial: Boolean = false, val exhibitors: List<Int> = emptyList())

Booth info.

Constructors

Link copied to clipboard
constructor(id: Int, name: String = "", layer: ExpoFpLayer = ExpoFpLayer(), externalId: String = "", isSpecial: Boolean = false, exhibitors: List<Int> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "exhibitors")
val exhibitors: List<Int>

List of exhibitors IDs.

Link copied to clipboard
@SerialName(value = "externalId")
val externalId: String

Booth external ID.

Link copied to clipboard
@SerialName(value = "id")
val id: Int

Booth ID.

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

Whether the booth is special.

Link copied to clipboard
@SerialName(value = "layer")
val layer: ExpoFpLayer

Layer info.

Link copied to clipboard
@SerialName(value = "name")
val name: String

Booth name.