UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 405 B
/** * Indicates the seniority level of the lien in a loan. * - Tag: 1954 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const LienSeniority: Readonly<{ /** Unknown */ readonly Unknown: 0; /** First lien */ readonly FirstLien: 1; /** Second lien */ readonly SecondLien: 2; /** Third lien */ readonly ThirdLien: 3; }>;