TriggerRecurrenceSchedule

data class TriggerRecurrenceSchedule(val atTheseHours: List<Int>? = null, val atTheseMinutes: List<Int>? = null, val onTheseDays: List<String>? = null)

Constructors

Link copied to clipboard
constructor(atTheseHours: List<Int>? = null, atTheseMinutes: List<Int>? = null, onTheseDays: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

Specifies a list of hours when the trigger should run. Valid values are between 0 and 23.

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

Specifies a list of minutes when the trigger should run. Valid values are between 0 and 59.

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

Specifies a list of days when the trigger should run. Valid values include Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, and Sunday.