UNPKG

@jaricardodev/ews-javascript-api

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