UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 388 B
/** * Type of swap stream. * - Tag: 40050 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const StreamType: Readonly<{ /** Payment / cash settlement */ readonly PaymentCashSettlement: 0; /** Physical delivery */ readonly PhysicalDelivery: 1; }>; export type StreamType = (typeof StreamType)[keyof typeof StreamType];