OpenStart

@Serializable
@SerialName(value = "openStart")
data class OpenStart(val title: String, val description: String, val endsOn: LocalDate) : EventEntry(source)

Event with an unknown start date.

Typically, an event that started in the previous month.

Constructors

Link copied to clipboard
constructor(title: String, description: String, endsOn: LocalDate)

Properties

Link copied to clipboard
open override val description: String

Brief description of the event.

Link copied to clipboard
open override val endsAt: Instant

The exact moment when the event ends. Based on the event's end date and server save time.

Link copied to clipboard
open override val endsOn: LocalDate

End date of the event, or null if the end is open/unknown.

Link copied to clipboard
open override val startsAt: Instant?

The exact moment when the event starts. Based on the event's start date and server save time.

Link copied to clipboard
open override val startsOn: LocalDate?

Start date of the event, or null if the start is open/unknown.

Link copied to clipboard
open override val title: String

The title or name of the event.