EventEntry

@Serializable
data class EventEntry(val title: String, val description: String, val startDate: LocalDate?, val endDate: LocalDate?)(source)

An event in the EventsSchedule.

Constructors

Link copied to clipboard
constructor(title: String, description: String, startDate: LocalDate?, endDate: LocalDate?)

Properties

Link copied to clipboard

A brief description of the event.

Link copied to clipboard

The duration of the event, if both startDate and endDate are known.

Link copied to clipboard

The date when the event ends. If null, it means the event ends in the following month and the date is unavailable.

Link copied to clipboard

The date when the event starts. If null, it means the event started in the previous month and the date is unavailable.

Link copied to clipboard

The title or name of the event.