fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 619 B
TypeScript
/**
* Used to return an error code or text associated with a response to an Application Request.
* - Tag: 1354
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ApplResponseError: Readonly<{
/** Application does not exist */
readonly ApplicationDoesNotExist: 0;
/** Messages requested are not available */
readonly MessagesRequestedAreNotAvailable: 1;
/** User not authorized for application */
readonly UserNotAuthorizedForApplication: 2;
}>;
export type ApplResponseError = (typeof ApplResponseError)[keyof typeof ApplResponseError];