UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

42 lines (41 loc) 1.21 kB
/** * Identifies status of allocation. * - Tag: 87 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocStatus: Readonly<{ /** Accepted (successfully processed) */ readonly Accepted: 0; /** Block level reject */ readonly BlockLevelReject: 1; /** Account level reject */ readonly AccountLevelReject: 2; /** Received (received not yet processed) */ readonly Received: 3; /** Incomplete */ readonly Incomplete: 4; /** Rejected by intermediary */ readonly RejectedByIntermediary: 5; /** Allocation pending */ readonly AllocationPending: 6; /** Reversed */ readonly Reversed: 7; /** Cancelled by intermediary */ readonly CancelledByIntermediary: 8; /** Claimed */ readonly Claimed: 9; /** Refused */ readonly Refused: 10; /** Pending give-up approval */ readonly PendingGiveUpApproval: 11; /** Cancelled */ readonly Cancelled: 12; /** Pending take-up approval */ readonly PendingTakeUpApproval: 13; /** Reversal pending */ readonly ReversalPending: 14; }>; export type AllocStatus = (typeof AllocStatus)[keyof typeof AllocStatus];