@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 417 B
TypeScript
import { Price } from './Price';
/** Prices of an order */
export interface OrderPrices {
/** Price before reduction application */
originalWithoutTax?: Price;
/** Price concerning the reduced amount */
reduction?: Price;
/** Tax amount */
tax: Price;
/** Price with tax */
withTax: Price;
/** Price without tax */
withoutTax: Price;
}
//# sourceMappingURL=OrderPrices.d.ts.map