UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 620 B
import { GenericProductPricing } from '../order/cart/GenericProductPricing'; import { GenericProductTypeEnum } from '../order/cart/GenericProductTypeEnum'; /** Representation of a generic product */ export interface GenericProductDefinition { /** Name displayed in the invoice */ invoiceName: string; /** Product offer identifier */ planCode: string; /** Prices of the product offer */ prices: GenericProductPricing[]; /** Name of the product */ productName: string; /** Product type */ productType: GenericProductTypeEnum; } //# sourceMappingURL=GenericProductDefinition.d.ts.map