fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 470 B
TypeScript
/**
* The status of this execution acknowledgement message.
* - Tag: 1036
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const ExecAckStatus: Readonly<{
/** Received, not yet processed */
readonly Received: "0";
/** Accepted */
readonly Accepted: "1";
/** Don't know / Rejected */
readonly DontKnow: "2";
}>;
export type ExecAckStatus = (typeof ExecAckStatus)[keyof typeof ExecAckStatus];