@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 328 B
TypeScript
import { CurrencyCodeEnum } from '../../order/CurrencyCodeEnum';
/** Price with currency and amount in micro-cents */
export interface Price {
/** */
currencyCode: CurrencyCodeEnum;
/** */
text: string;
/** */
value: number;
/** */
valueInUcents: number;
}
//# sourceMappingURL=Price.d.ts.map