import { ObjectStateEnum } from './ObjectStateEnum';
/** Exchange Account Archive */
export interface ExchangeAccountArchive {
    /** Creation date */
    creationDate: string;
    /** Archive mailbox usage */
    currentUsage?: number;
    /** GUID of archive mailbox */
    guid?: string;
    /** Archive mailbox maximum size in GB */
    quota: number;
    /** Archive mailbox state */
    state: ObjectStateEnum;
    /** Pending task for this archive mailbox */
    taskPendingId?: number;
}
//# sourceMappingURL=ExchangeAccountArchive.d.ts.map