UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 691 B
/** * Result party detail definition request. * - Tag: 1877 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PartyDetailRequestResult: Readonly<{ /** Successful (default) */ readonly Successful: 0; /** Invalid party(-ies) */ readonly InvalidParty: 1; /** Invalid related party(-ies) */ readonly InvalidRelatedParty: 2; /** Invalid party status(es) */ readonly InvalidPartyStatus: 3; /** Not authorized */ readonly NotAuthorized: 98; /** Other */ readonly Other: 99; }>; export type PartyDetailRequestResult = (typeof PartyDetailRequestResult)[keyof typeof PartyDetailRequestResult];