UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 638 B
import { MigrationServiceType } from './MigrationServiceType'; /** Migration service */ export interface MigrationService { /** Admin contact of service */ contactAdmin: string; /** Billing contact of service */ contactBilling: string; /** Tech contact of service */ contactTech: string; /** Creation date of service */ creation: string; /** Service name allowed as migration destination */ destinationServiceName: string; /** Expiration date of service */ expiration: string; /** Offer type of service */ type: MigrationServiceType; } //# sourceMappingURL=MigrationService.d.ts.map