UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 519 B
/** * Used for options when delivering the order to an execution system/exchange to specify if the order is for a customer or the firm placing the order itself. * - Tag: 204 * - FIX Specification type: int * - FIX Specification version: FIX42 * - Mapped type: number * @readonly * @public */ export declare const CustomerOrFirm: Readonly<{ /** Customer */ readonly Customer: 0; /** Firm */ readonly Firm: 1; }>; export type CustomerOrFirm = (typeof CustomerOrFirm)[keyof typeof CustomerOrFirm];