UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 523 B
import { InstancePriceStatusEnum } from './InstancePriceStatusEnum'; import { InstancePriceTypeEnum } from './InstancePriceTypeEnum'; import { Price } from '../../order/Price'; /** Price of the instance */ export interface InstancePrice { /** is vat included in price */ includeVat: boolean; /** Instance price */ price: Price; /** Instance price status */ status: InstancePriceStatusEnum; /** Instance price type */ type: InstancePriceTypeEnum; } //# sourceMappingURL=InstancePrice.d.ts.map