ExpoFpSchedule

@Serializable
data class ExpoFpSchedule(val id: Int, val boothId: Int, val exhibitorId: Int? = null, val externalId: String = "", val name: String, val description: String, val startDate: String, val endDate: String, val link: URL? = null)

Schedule info about an item.

Constructors

Link copied to clipboard
constructor(id: Int, boothId: Int, exhibitorId: Int? = null, externalId: String = "", name: String, description: String, startDate: String, endDate: String, link: URL? = null)

Properties

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

Schedule Booth ID.

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

Schedule description.

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

Schedule end date, format yyyy-MM-dd'T'HH:mm:ss.

Link copied to clipboard
@SerialName(value = "exhibitorId")
val exhibitorId: Int? = null

Schedule exhibitor ID.

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

Schedule external ID.

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

Schedule ID.

Link copied to clipboard
@SerialName(value = "link")
@Serializable(with = NullableUrlAsStringSerializer::class)
val link: URL? = null

Schedule external link.

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

Schedule name.

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

Schedule start date, format yyyy-MM-dd'T'HH:mm:ss.

Functions

Link copied to clipboard
open override fun toString(): String