import { ObjectStateEnum } from './ObjectStateEnum';
/** Get user that has an impersonation right on all that mailboxes */
export interface ExchangeAccountImpersonation {
    /** Creation date */
    creationDate: string;
    /** Last password update date */
    lastPasswordChange?: string;
    /** User state */
    state: ObjectStateEnum;
    /** Pending task id */
    taskPendingId?: number;
    /** User Principal Name */
    upn: string;
}
//# sourceMappingURL=ExchangeAccountImpersonation.d.ts.map