OpenEnd

@Serializable
@SerialName(value = "openEnd")
data class OpenEnd(val title: String, val description: String, val startsOn: LocalDate) : EventEntry(source)

Event with an unknown end date.

Typically, an event that ends in the next month.

Constructors

Link copied to clipboard
constructor(title: String, description: String, startsOn: 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.