fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 629 B
TypeScript
/**
* Identifies whether the current entry contributes to the trade or transaction economics, i.e. affects NetMoney(118).
* - Tag: 2712
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MiscFeeQualifier: Readonly<{
/** Contributes (default)
Fee contributes to the trade or transaction economics. */
readonly Contributes: 0;
/** Does not contribute
Fee does not contribute to the trade or transaction economics. */
readonly DoesNotContribute: 1;
}>;
export type MiscFeeQualifier = (typeof MiscFeeQualifier)[keyof typeof MiscFeeQualifier];