//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
}