interface BackupSchedule {
    disabled: boolean;
    frequency: number;
    nextRunAt?: Date;
    retention: number;
}

Properties

disabled: boolean

Defines whether the backup schedule feature is disabled.

frequency: number

Frequency of the backup schedule (in hours).

nextRunAt?: Date

Next run of the backup schedule (accurate to 10 minutes).

retention: number

Default retention period of backups (in days).