UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 520 B
/** * Type of fee elected for the break provision. * - Tag: 42707 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ProvisionBreakFeeElection: Readonly<{ /** Flat fee */ readonly FlatFee: 0; /** Amortized fee */ readonly AmortizedFee: 1; /** Funding fee */ readonly FundingFee: 2; /** Flat fee and funding fee */ readonly FlatAndFundingFee: 3; /** Amortized fee and funding fee */ readonly AmortizedAndFundingFee: 4; }>;