fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 834 B
TypeScript
/**
* Response to allocation to be communicated to a counterparty through an intermediary, i.e. clearing house. Used in conjunction with AllocType = "Request to Intermediary" and AllocReportType = "Request to Intermediary"
* - Tag: 808
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AllocIntermedReqType: Readonly<{
/** Pending Accept */
readonly PendingAccept: 1;
/** Pending Release */
readonly PendingRelease: 2;
/** Pending Reversal */
readonly PendingReversal: 3;
/** Accept */
readonly Accept: 4;
/** Block Level Reject */
readonly BlockLevelReject: 5;
/** Account Level Reject */
readonly AccountLevelReject: 6;
}>;
export type AllocIntermedReqType = (typeof AllocIntermedReqType)[keyof typeof AllocIntermedReqType];