UNPKG

@jaricardodev/ews-javascript-api

Version:
27 lines (22 loc) 435 B
//todo - move to file where class Microsoft.Exchange.WebServices.Data.OnlineMeetingSettings is located /** * Online Meeting Access Level options. */ export enum OnlineMeetingAccessLevel { /** * Locked. */ Locked = 0, /** * Invited. */ Invited = 1, /** * Internal. */ Internal = 2, /** * Everyone. */ Everyone = 3 }