@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
26 lines (21 loc) • 388 B
text/typescript
/**
* Defines the sensitivity of an item.
*/
export enum Sensitivity {
/**
* The item has a normal sensitivity.
*/
Normal = 0,
/**
* The item is personal.
*/
Personal = 1,
/**
* The item is private.
*/
Private = 2,
/**
* The item is confidential.
*/
Confidential = 3
}