UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

26 lines 924 B
import { DomainStatusEnum } from '../../domain/DomainStatusEnum'; import { DiagnoseEnum } from './DiagnoseEnum'; /** Domain service */ export interface DomainService { /** List of allowed sizes for this domain in bytes */ allowedAccountSize?: number[]; /** Creation date of domain */ creationDate?: string; /** Name of domain */ domain: string; /** Filerz of domain */ filerz?: number; /** Result of MX check if current MX fit to OVH recommendations */ isMXValid: DiagnoseEnum; /** Result of SPF check if current SPF fit to OVH recommendations */ isSPFValid: DiagnoseEnum; /** Name of servicelinked with this domain */ linkTo?: string; /** Name of new MXPlan service */ migratedMXPlanServiceName?: string; /** Offer of email service */ offer?: string; /** Domain Status */ status: DomainStatusEnum; } //# sourceMappingURL=DomainService.d.ts.map