EventDatesResponse

data class EventDatesResponse(var id: String? = null, var access: AccessResponse? = null, var start: EventStartResponse? = null, var end: EventEndResponse? = null, var timezone: String? = null, var status: EventStatusResponse? = null, var spanMultipleDays: Boolean = false)

Represents event date details in the Discovery API response.

Holds information about event start, end, access, and status.

Constructors

Link copied to clipboard
constructor(id: String? = null, access: AccessResponse? = null, start: EventStartResponse? = null, end: EventEndResponse? = null, timezone: String? = null, status: EventStatusResponse? = null, spanMultipleDays: Boolean = false)

Properties

Link copied to clipboard
@SerializedName(value = "access")
var access: AccessResponse?

Access time details, if available.

Link copied to clipboard

End date and time details, if available.

Link copied to clipboard
var id: String?

The event's ID, if available.

Link copied to clipboard

Indicates if the event spans multiple days, defaults to false.

Link copied to clipboard

Start date and time details, if available.

Link copied to clipboard

Event status details, if available.

Link copied to clipboard

The event's timezone, if available.