RecurrenceTriggerResponse

data class RecurrenceTriggerResponse(val endTime: String? = null, val frequency: String, val interval: Int, val schedule: RecurrenceScheduleResponse? = null, val startTime: String? = null, val timeZone: String? = null, val triggerType: String)

Constructors

Link copied to clipboard
constructor(endTime: String? = null, frequency: String, interval: Int, schedule: RecurrenceScheduleResponse? = null, startTime: String? = null, timeZone: String? = null, triggerType: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val endTime: String? = null

Specifies end time of schedule in ISO 8601, but without a UTC offset. Refer https://en.wikipedia.org/wiki/ISO_8601. Recommented format would be "2022-06-01T00:00:01" If not present, the schedule will run indefinitely

Link copied to clipboard

Required The frequency to trigger schedule.

Link copied to clipboard

Required Specifies schedule interval in conjunction with frequency

Link copied to clipboard

The recurrence schedule.

Link copied to clipboard
val startTime: String? = null

Specifies start time of schedule in ISO 8601 format, but without a UTC offset.

Link copied to clipboard
val timeZone: String? = null

Specifies time zone in which the schedule runs. TimeZone should follow Windows time zone format. Refer: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11

Link copied to clipboard

Expected value is 'Recurrence'.