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