fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 485 B
TypeScript
/**
* 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;
}>;
export type LienSeniority = (typeof LienSeniority)[keyof typeof LienSeniority];