fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 547 B
TypeScript
/**
* Used to indicate the type of acknowledgement being sent.
* - Tag: 1348
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ApplResponseType: Readonly<{
/** Request successfully processed */
readonly RequestSuccessfullyProcessed: 0;
/** Application does not exist */
readonly ApplicationDoesNotExist: 1;
/** Messages not available */
readonly MessagesNotAvailable: 2;
}>;
export type ApplResponseType = (typeof ApplResponseType)[keyof typeof ApplResponseType];