fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 626 B
TypeScript
/**
* Identifies reason for rejection (of a settlement instruction request message).
* - Tag: 792
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlInstReqRejCode: Readonly<{
/** Unable to process request */
readonly UnableToProcessRequest: 0;
/** Unknown account */
readonly UnknownAccount: 1;
/** No matching settlement instructions found */
readonly NoMatchingSettlementInstructionsFound: 2;
/** Other */
readonly Other: 99;
}>;
export type SettlInstReqRejCode = (typeof SettlInstReqRejCode)[keyof typeof SettlInstReqRejCode];