fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 869 B
TypeScript
/**
* Result of a request as identified by the appropriate request ID field
* - Tag: 1511
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RequestResult: Readonly<{
/** Valid request */
readonly ValidRequest: 0;
/** Invalid or unsupported request */
readonly InvalidOrUnsupportedRequest: 1;
/** No data found that match selection criteria */
readonly NoDataFound: 2;
/** Not authorized to retrieve data */
readonly NotAuthorized: 3;
/** Data temporarily unavailable */
readonly DataTemporarilyUnavailable: 4;
/** Request for data not supported */
readonly RequestForDataNotSupported: 5;
/** Other (further information in RejectText (1328) field) */
readonly Other: 99;
}>;
export type RequestResult = (typeof RequestResult)[keyof typeof RequestResult];