fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 460 B
TypeScript
/**
* Specifies the affirmation status of the confirmation.
* - Tag: 940
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AffirmStatus: Readonly<{
/** Received */
readonly Received: 1;
/** Confirm rejected, i.e. not affirmed */
readonly ConfirmRejected: 2;
/** Affirmed */
readonly Affirmed: 3;
}>;
export type AffirmStatus = (typeof AffirmStatus)[keyof typeof AffirmStatus];