ScheduleRecurrence

data class ScheduleRecurrence(val expirationDate: String, val frequency: String, val interval: Int? = null, val weekDays: List<String>? = null)

Constructors

Link copied to clipboard
constructor(expirationDate: String, frequency: String, interval: Int? = null, weekDays: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

When the recurrence will expire in RFC-3339 format.

Link copied to clipboard

The frequency of the recurrence. Possible values are Daily and Weekly.

Link copied to clipboard
val interval: Int? = null

The interval to invoke the schedule on. Possible values are between 1 and 365.

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

The interval to invoke the schedule on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.