@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 437 B
TypeScript
import { PriceLabelEnum } from './PriceLabelEnum';
import { Price as AliasTypePrice } from '../Price';
import { Promotion } from './Promotion';
/** Price information with label */
export interface Price {
/** Label corresponding to a price */
label: PriceLabelEnum;
/** Price of the product */
price: AliasTypePrice;
/** Promotions on the product */
promotions?: Promotion[];
}
//# sourceMappingURL=Price.d.ts.map