fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 437 B
TypeScript
/**
* Used to identify the reporting mode of the settlement obligation which is either preliminary or final
* - Tag: 1159
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlObligMode: Readonly<{
/** Preliminary */
readonly Preliminary: 1;
/** Final */
readonly Final: 2;
}>;
export type SettlObligMode = (typeof SettlObligMode)[keyof typeof SettlObligMode];