Bounded

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

Event with both start and end moments known.

Constructors

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

Properties

Link copied to clipboard
open override val description: String

Brief description of the event.

Link copied to clipboard
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

The date when the event ends.

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

The date when the event starts.

Link copied to clipboard
open override val title: String

The title or name of the event.