fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 414 B
TypeScript
/**
* Type of acknowledgement.
* - Tag: 1503
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const StreamAsgnAckType: Readonly<{
/** Assignment Accepted */
readonly AssignmentAccepted: 0;
/** Assignment Rejected */
readonly AssignmentRejected: 1;
}>;
export type StreamAsgnAckType = (typeof StreamAsgnAckType)[keyof typeof StreamAsgnAckType];