@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 549 B
TypeScript
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