fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 472 B
TypeScript
/**
* Indicates whether the tolerance is at the seller's or buyer's option.
* - Tag: 41075
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryStreamToleranceOptionSide: Readonly<{
/** Buyer */
readonly Buyer: 1;
/** Seller */
readonly Seller: 2;
}>;
export type DeliveryStreamToleranceOptionSide = (typeof DeliveryStreamToleranceOptionSide)[keyof typeof DeliveryStreamToleranceOptionSide];