TimeInWeekArgs

data class TimeInWeekArgs(val day: Output<Either<String, WeekDay>>? = null, val hourSlots: Output<List<Int>>? = null) : ConvertibleToJava<TimeInWeekArgs>

Time in a week.

Constructors

Link copied to clipboard
constructor(day: Output<Either<String, WeekDay>>? = null, hourSlots: Output<List<Int>>? = null)

Properties

Link copied to clipboard
val day: Output<Either<String, WeekDay>>? = null

The day of the week.

Link copied to clipboard
val hourSlots: Output<List<Int>>? = null

Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying 0, 1 means the 00:00 - 02:00 UTC time range.

Functions

Link copied to clipboard
open override fun toJava(): TimeInWeekArgs