@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
9 lines • 424 B
TypeScript
import { CurrencyCodeEnum } from '../../order/CurrencyCodeEnum';
/** Minimal price payload sent by the client to acknowledge the price seen, before placing the actual order */
export interface PriceAcknowledge {
/** Currency code of the acknowledged price */
currencyCode: CurrencyCodeEnum;
/** The effective price acknowledged by the client */
value: number;
}
//# sourceMappingURL=PriceAcknowledge.d.ts.map