UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 577 B
/** * Specifies the type of loan when the credit default swap's reference obligation is a loan. * - Tag: 1955 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const LoanFacility: Readonly<{ /** Bridge loan */ readonly BridgeLoan: 0; /** Letter of credit */ readonly LetterOfCredit: 1; /** Revolving loan */ readonly RevolvingLoan: 2; /** Swingline funding */ readonly SwinglineFunding: 3; /** Term loan */ readonly TermLoan: 4; /** Trade claim */ readonly TradeClaim: 5; }>;