ExpoFpCategory

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

Category info.

Constructors

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

Properties

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

List of exhibitors.

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

Category ID.

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

Category name.