@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
26 lines (21 loc) • 394 B
text/typescript
/**
* Defines the quality of an availability suggestion.
*/
export enum SuggestionQuality {
/**
* The suggestion is excellent.
*/
Excellent = 0,
/**
* The suggestion is good.
*/
Good = 1,
/**
* The suggestion is fair.
*/
Fair = 2,
/**
* The suggestion is poor.
*/
Poor = 3
}