ScheduleVacation

@Serializable
data class ScheduleVacation(val startTime: Instant, val endTime: Instant)

Represents a vacation period in a stream schedule.

Constructors

Link copied to clipboard
constructor(startTime: Instant, endTime: Instant)

Properties

Link copied to clipboard
@SerialName(value = "end_time")
val endTime: Instant
Link copied to clipboard
@SerialName(value = "start_time")
val startTime: Instant