fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 636 B
TypeScript
/**
* 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;
}>;
export type ProvisionBreakFeeElection = (typeof ProvisionBreakFeeElection)[keyof typeof ProvisionBreakFeeElection];