@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
22 lines (18 loc) • 426 B
text/typescript
/**
* Defines the result of a call to an EWS method.
* Values in this enumeration have to be ordered from lowest to highest severity.
*/
export enum ServiceResult {
/**
* The call was successful
*/
Success = 0,
/**
* The call triggered at least one warning
*/
Warning = 1,
/**
* The call triggered at least one error
*/
Error = 2
}