@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 397 B
TypeScript
import { CurrencyCodeEnum } from './CurrencyCodeEnum';
/** Price with its currency and textual representation */
export interface Price {
/** Currency code */
currencyCode: CurrencyCodeEnum;
/** Price in microcents */
priceInUcents?: number;
/** Textual representation */
text: string;
/** The effective price */
value: number;
}
//# sourceMappingURL=Price.d.ts.map