import { StatusEnum } from './migration/StatusEnum';
import { TypeEnum } from './migration/TypeEnum';
/** OVHcloud Connect migration */
export interface Migration {
    /** Starting date of the migration */
    creationDate?: string;
    /** Ending date of the migration */
    doneDate?: string;
    /** Migration reference */
    id: number;
    /** Name of the migration product */
    productName: string;
    /** ServiceId reference */
    serviceId: number;
    /** Migration status */
    status: StatusEnum;
    /** Type of migration */
    type: TypeEnum;
}
//# sourceMappingURL=Migration.d.ts.map