@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
16 lines (13 loc) • 326 B
text/typescript
/**
* Defines base property sets that are used as the base for custom property sets.
*/
export enum BasePropertySet {
/**
* Only includes the Id of items and folders.
*/
IdOnly = 0,
/**
* Includes all the first class properties of items and folders.
*/
FirstClassProperties = 1
}