
/**
 * Defines a user's Out of Office Assistant status.
 */
export enum OofState {
    
    /**
     * The assistant is diabled.
     */
    Disabled = 0,
    
    /**
     * The assistant is enabled.
     */
    Enabled = 1,
    
    /**
     * The assistant is scheduled.
     */
    Scheduled = 2
}