ExpoFpExhibitor

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

Exhibitor info.

Constructors

Link copied to clipboard
constructor(id: Long, name: String, externalId: String = "", booths: List<@Serializable(with = StrictLongSerializer::class) Long> = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "booths")
val booths: List<@Serializable(with = StrictLongSerializer::class) Long>

List of booths.

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

Exhibitor external ID.

Link copied to clipboard
@SerialName(value = "id")
@Serializable(with = StrictLongSerializer::class)
val id: Long

Exhibitor ID.

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

Exhibitor name.