fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
24 lines (23 loc) • 778 B
TypeScript
/**
* Specifies the reason for an amount type when reported on a position. Useful when multiple instances of the same amount type are reported.
* - Tag: 1585
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosAmtReason: Readonly<{
/** Options settlement */
readonly OptionsSettlement: 0;
/** Pending erosion adjustment */
readonly PendingErosionAdjustment: 1;
/** Final erosion adjustment */
readonly FinalErosionAdjustment: 2;
/** Tear-up coupon amount */
readonly TearUpCouponAmount: 3;
readonly PriceAlignmentInterest: 4;
/** Delivery invoice charges */
readonly DeliveryInvoiceCharges: 5;
/** Delivery storage charges */
readonly DeliveryStorageCharges: 6;
}>;