fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
38 lines (37 loc) • 1.04 kB
TypeScript
/**
* Identifies the data point used in the matching operation which resulted in an exception.
* - Tag: 2774
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MatchExceptionElementType: Readonly<{
/** Accrued interest */
readonly AccruedInterest: 1;
/** Deal price */
readonly DealPrice: 2;
readonly TradeDate: 3;
readonly SettlementDate: 4;
readonly SideIndicator: 5;
readonly TradedCurrency: 6;
readonly AccountID: 7;
readonly ExecutingBrokerID: 8;
/** Settlement currency and amount */
readonly SettlementCurrencyAndAmount: 9;
readonly InvestmentManagerID: 10;
/** Net amount */
readonly NetAmount: 11;
readonly PlaceOfSettlement: 12;
/** Commissions */
readonly Commissions: 13;
readonly SecurityIdentifier: 14;
/** Quantity allocated */
readonly QualityAllocated: 15;
/** Principal */
readonly Principal: 16;
/** Fees */
readonly Fees: 17;
/** Tax */
readonly Tax: 18;
}>;