
/**
 * Defines the type of ExtensionInstallScope.
 */
export enum ExtensionInstallScope {
    
    /**
     * None
     */
    None = 0,
    
    /**
     * User
     */
    User = 1,
    
    /**
     * Organization
     */
    Organization = 2,
    
    /**
     * Exchange Default
     */
    Default = 3
}