/** Get protocol status on that mailbox */
export interface ExchangeAccountProtocol {
    /** IMAP protocol enabled on that mailbox */
    IMAP: boolean;
    /** POP protocol enabled on that mailbox */
    POP: boolean;
    /** Mobile access enabled on that mailbox */
    activeSync: boolean;
    /** Creation date */
    creationDate: string;
    /** Last update date */
    lastUpdate?: string;
    /** Pending task id */
    taskPendingId: number;
    /** Web mail enabled on that mailbox */
    webMail: boolean;
}
//# sourceMappingURL=ExchangeAccountProtocol.d.ts.map