Type Alias ScheduleRequestObject

type ScheduleRequestObject = {
    interval?: number;
    recurrence?: string;
    startAt?: string;
    stopAt?: string;
    timezone?: string;
}
Index
interval?: number

Interval in seconds; must be a multiple of 60. Values are rounded to the nearest minute (≥30 seconds rounded up, otherwise down).

recurrence?: string

The RRULE that defines when the automation runs. When provided, it takes precedence over interval.

startAt?: string
stopAt?: string
timezone?: string