ExpoFpCategory

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

Category info.

Constructors

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

Properties

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

List of exhibitors.

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

Category ID.

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

Category name.