UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

41 lines (40 loc) 1.13 kB
/** * Type of payment. * - Tag: 40213 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PaymentType: Readonly<{ /** Brokerage */ readonly Brokerage: 0; /** Upfront fee */ readonly UpfrontFee: 1; /** Independent amount / collateral */ readonly IndependentAmountCollateral: 2; /** Principal exchange */ readonly PrincipalExchange: 3; /** Novation / termination */ readonly NovationTermination: 4; /** Early termination provision */ readonly EarlyTerminationProvision: 5; /** Cancelable provision */ readonly CancelableProvision: 6; /** Extendible provision */ readonly ExtendibleProvision: 7; /** Cap rate provision */ readonly CapRateProvision: 8; /** Floor rate provision */ readonly FloorRateProvision: 9; /** Option premium */ readonly OptionPremium: 10; /** Settlement payment */ readonly SettlementPayment: 11; /** Cash settlement */ readonly CashSettl: 12; readonly SecurityLending: 13; readonly Rebate: 14; /** Other */ readonly Other: 99; }>;