@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
26 lines (21 loc) • 376 B
text/typescript
/**
* Defines the type of a service object.
*/
export enum ServiceObjectType {
/**
* The object is a folder.
*/
Folder = 0,
/**
* The object is an item.
*/
Item = 1,
/**
* Data represents a conversation
*/
Conversation = 2,
/**
* Data represents a persona
*/
Persona = 3
}