UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 540 B
/** * Type of reference obligation for credit derivatives contracts. * - Tag: 2012 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const UnderlyingObligationType: Readonly<{ /** Bond */ readonly Bond: "0"; /** Convertible bond */ readonly ConvertibleBond: "1"; /** Mortgage */ readonly Mortgage: "2"; /** Loan */ readonly Loan: "3"; }>; export type UnderlyingObligationType = (typeof UnderlyingObligationType)[keyof typeof UnderlyingObligationType];