UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 494 B
/** * Type of stream assignment request. * - Tag: 1498 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const StreamAsgnReqType: Readonly<{ /** Stream assignment for new customer(s) */ readonly StreamAssignmentForNewCustomer: 1; /** Stream assignment for existing customer(s) */ readonly StreamAssignmentForExistingCustomer: 2; }>; export type StreamAsgnReqType = (typeof StreamAsgnReqType)[keyof typeof StreamAsgnReqType];