fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 548 B
TypeScript
/**
* Specifies the basis or unit used to calculate the total commission based on the rate.
* - Tag: 13
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const CommType: Readonly<{
readonly PerUnit: '1';
/** Percent */
readonly Percent: '2';
readonly Absolute: '3';
readonly PercentageWaivedCashDiscount: '4';
readonly PercentageWaivedEnhancedUnits: '5';
readonly PointsPerBondOrContract: '6';
readonly BasisPoints: '7';
readonly AmountPerContract: '8';
}>;