fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 531 B
TypeScript
/**
* Indicates whether application level recovery is needed.
* - Tag: 1744
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ApplLevelRecoveryIndicator: Readonly<{
/** Application level recovery is not needed (default) */
readonly NoApplRecoveryNeeded: 0;
/** Application level recovery is needed */
readonly ApplRecoveryNeeded: 1;
}>;
export type ApplLevelRecoveryIndicator = (typeof ApplLevelRecoveryIndicator)[keyof typeof ApplLevelRecoveryIndicator];