ExpoFpExhibitor

@Serializable
data class ExpoFpExhibitor(val id: Int, val name: String, val externalId: String = "", val booths: List<Int> = emptyList())

Exhibitor info.

Constructors

Link copied to clipboard
constructor(id: Int, name: String, externalId: String = "", booths: List<Int> = emptyList())

Properties

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

List of booths.

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

Exhibitor external ID.

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

Exhibitor ID.

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

Exhibitor name.