fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 733 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;
}>;