UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

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