UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 596 B
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