UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 300 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; }>;