Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sdk/model/o365/__json__/o365-job-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export interface O365JobJson extends EntityJson {
type_vex: boolean;
type_vesp: boolean;
type_veod: boolean;
type_vet: boolean;
excluded_items?: SelectedExcludedItems;
selected_items?: SelectedExcludedItems;
}
Expand Down
3 changes: 2 additions & 1 deletion src/sdk/model/o365/__json__/o365-restore-session-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export interface O365RestoreSessionJson extends EntityJson {
export enum O365RestoreSessionType {
VEX = 'Vex',
VESP = 'Vesp',
VEOD = 'Veod'
VEOD = 'Veod',
VET = 'Vet'
}

/**
Expand Down
8 changes: 8 additions & 0 deletions src/sdk/model/o365/o365-job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,14 @@ export class O365Job extends Entity {
return this._json.type_vesp;
}

/**
* Indicates whether the Backup Job has the Teams service
* @returns {boolean}
*/
get hasTeams(): boolean {
return this._json.type_vet;
}

/**
* Gets the Excluded Items for a SelectedItems type of Backup Job
* @returns {O365BackupJobSelectedExcludedItems | null}
Expand Down