fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 591 B
TypeScript
/**
* Identifies the status of the Confirmation.
* - Tag: 665
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ConfirmStatus: Readonly<{
/** Received */
readonly Received: 1;
/** Mismatched Account */
readonly MismatchedAccount: 2;
/** Missing Settlement Instructions */
readonly MissingSettlementInstructions: 3;
/** Confirmed */
readonly Confirmed: 4;
/** Request Rejected */
readonly RequestRejected: 5;
}>;
export type ConfirmStatus = (typeof ConfirmStatus)[keyof typeof ConfirmStatus];