Files
onspring-api-sdk-javascript/src/enums/FileStorageSite.ts
T

23 lines
479 B
TypeScript
Raw Normal View History

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 {
/**
* @constant Internal - The file is stored in the internal file storage.
* @type {string}
*/
2023-01-26 23:26:01 -06:00
Internal = 'Internal',
/**
* @constant OneDrive - The file is stored in OneDrive.
* @type {string}
*/
2023-01-26 23:26:01 -06:00
OneDrive = 'OneDrive',
/**
* @constant GoogleDrive - The file is stored in Google Drive.
* @type {string}
*/
2023-01-26 23:26:01 -06:00
GoogleDrive = 'GoogleDrive',
}