2023-02-20 19:12:15 -06:00
|
|
|
/**
|
|
|
|
|
* @enum FileStorageSite - The site where the file is stored.
|
|
|
|
|
*/
|
2023-01-26 23:47:25 -06:00
|
|
|
export enum FileStorageSite {
|
2023-01-27 15:00:34 -06:00
|
|
|
/**
|
|
|
|
|
* @constant Internal - The file is stored in the internal file storage.
|
|
|
|
|
* @type {string}
|
|
|
|
|
*/
|
2023-01-26 23:26:01 -06:00
|
|
|
Internal = 'Internal',
|
2023-01-27 15:00:34 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @constant OneDrive - The file is stored in OneDrive.
|
|
|
|
|
* @type {string}
|
|
|
|
|
*/
|
2023-01-26 23:26:01 -06:00
|
|
|
OneDrive = 'OneDrive',
|
2023-01-27 15:00:34 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @constant GoogleDrive - The file is stored in Google Drive.
|
|
|
|
|
* @type {string}
|
|
|
|
|
*/
|
2023-01-26 23:26:01 -06:00
|
|
|
GoogleDrive = 'GoogleDrive',
|
|
|
|
|
}
|