UNPKG

@jaricardodev/ews-javascript-api

Version:
26 lines (21 loc) 376 B
/** * 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 }