fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 448 B
TypeScript
/**
* Used to indicate the status of the trade submission (not the trade report)
* - Tag: 1523
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TrdAckStatus: Readonly<{
/** Accepted */
readonly Accepted: 0;
/** Rejected */
readonly Rejected: 1;
/** Received */
readonly Received: 2;
}>;
export type TrdAckStatus = (typeof TrdAckStatus)[keyof typeof TrdAckStatus];