Type Alias ScheduleRequestObject

type ScheduleRequestObject = {
    interval?: number;
    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).

startAt?: string

The date and time when the schedule becomes active.

stopAt?: string

The date and time until the schedule is active.

timezone?: string

The timezone applied to the start and end times.