fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 574 B
TypeScript
/**
* Specifies the reason the PartyActionRequest(35=DH) was rejected.
* - Tag: 2333
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PartyActionRejectReason: Readonly<{
/** Invalid party or parties */
readonly InvalidParty: 0;
/** Unknown requesting party */
readonly UnkReqParty: 1;
/** Not authorized */
readonly NotAuthorized: 98;
/** Other */
readonly Other: 99;
}>;
export type PartyActionRejectReason = (typeof PartyActionRejectReason)[keyof typeof PartyActionRejectReason];