UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 366 B
/** * Code to represent whether value is net (inclusive of tax) or gross. * - Tag: 416 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const IncTaxInd: Readonly<{ /** Net */ readonly Net: 1; /** Gross */ readonly Gross: 2; }>; export type IncTaxInd = (typeof IncTaxInd)[keyof typeof IncTaxInd];