UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 545 B
import { BillingTypeEnum } from './ressources/BillingTypeEnum'; import { Price } from '../order/Price'; import { ResourceTypeEnum } from './ressources/ResourceTypeEnum'; /** A structure describing the Resource's new price */ export interface ResourceNewPricesEntry { /** */ billingType: BillingTypeEnum; /** */ changed: boolean; /** */ name: string; /** */ newPrice: Price; /** */ oldPrice: Price; /** */ resourceType: ResourceTypeEnum; } //# sourceMappingURL=ResourceNewPricesEntry.d.ts.map