UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

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