interface Backup {
    aclEnabled: boolean;
    autologin: boolean;
    id: number;
    login: string;
    quotaFiles: number;
    quotaFilesUsed: number;
    quotaSpace: number;
    quotaSpaceUsed: number;
    server: string;
    status: BackupStatus;
}

Properties

aclEnabled: boolean

ACL enable boolean of the backup.

autologin: boolean

Autologin boolean of the backup.

id: number

ID of the backup.

login: string

Login of the backup.

quotaFiles: number

Total quota files of the backup.

quotaFilesUsed: number

Quota files used of the backup.

quotaSpace: number

Total quota space of the backup.

quotaSpaceUsed: number

Quota space used of the backup.

server: string

Server of the backup.

status: BackupStatus

Status of the backup.