UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 655 B
/** * Further sub classification of the CommissionAmountType(2641). * - Tag: 2725 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const CommissionAmountSubType: Readonly<{ /** Research payment account (RPA) */ readonly ResearchPaymentAccount: 0; /** Commission sharing agreement (CSA) */ readonly CommissionSharingAgreement: 1; /** Other type of research payment A type of research payment other than RPA or CSA. */ readonly OtherTypeResearchPayment: 2; }>; export type CommissionAmountSubType = (typeof CommissionAmountSubType)[keyof typeof CommissionAmountSubType];