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