import { AccountOfferEnum } from './AccountOfferEnum';
import { UnitAndValueLong } from '../../../complexType/UnitAndValueLong';
/** HostedEmail account */
export interface Account {
    /** Is the anti-spam enabled ? */
    antispamEnabled: boolean;
    /** Is the anti-virus enabled ? */
    antivirusEnabled: boolean;
    /** Offer name */
    offer: AccountOfferEnum;
    /** Primary email address */
    primaryEmailAddress: string;
    /** Quota of the mailbox */
    quota: UnitAndValueLong;
    /** Size of the maibox */
    size: UnitAndValueLong;
}
//# sourceMappingURL=Account.d.ts.map