TriggerScheduleSchedule

data class TriggerScheduleSchedule(val daysOfMonths: List<Int>? = null, val daysOfWeeks: List<String>? = null, val hours: List<Int>? = null, val minutes: List<Int>? = null, val monthlies: List<TriggerScheduleScheduleMonthly>? = null)

Constructors

Link copied to clipboard
constructor(daysOfMonths: List<Int>? = null, daysOfWeeks: List<String>? = null, hours: List<Int>? = null, minutes: List<Int>? = null, monthlies: List<TriggerScheduleScheduleMonthly>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.

Link copied to clipboard
val daysOfWeeks: List<String>? = null

Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.

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

Hours of the day on which the trigger is scheduled.

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

Minutes of the hour on which the trigger is scheduled.

Link copied to clipboard

A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.