fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 467 B
TypeScript
/**
* The type of assignment being affected in the Stream Assignment Report.
* - Tag: 1617
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const StreamAsgnType: Readonly<{
/** Assignment */
readonly Assignment: 1;
/** Rejected */
readonly Rejected: 2;
/** Terminate/Unassign */
readonly Terminate: 3;
}>;
export type StreamAsgnType = (typeof StreamAsgnType)[keyof typeof StreamAsgnType];