@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 806 B
TypeScript
import { Price } from '../order/Price';
import { HardwareDetails } from './HardwareDetails';
/** Migration offer */
export interface AvailableMigrationOffer {
/** Monthly price of the current offer */
currentOfferPrice: Price;
/** Description of the offer */
description: string;
/** Number of months of engagement */
engagementMonths: number;
/** Specify if a hardware is available */
hardwareAvailable: boolean;
/** Name of the hardware */
hardwareName?: string;
/** Hardware purchase price */
hardwarePrice?: Price;
/** Details of available hardwares */
hardwares: HardwareDetails[];
/** Name of the offer */
offer: string;
/** Monthly price of the new offer */
price: Price;
}
//# sourceMappingURL=AvailableMigrationOffer.d.ts.map