fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 447 B
TypeScript
/**
* Type of financing termination.
* - Tag: 788
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TerminationType: Readonly<{
/** Overnight */
readonly Overnight: 1;
/** Term */
readonly Term: 2;
/** Flexible */
readonly Flexible: 3;
/** Open */
readonly Open: 4;
}>;
export type TerminationType = (typeof TerminationType)[keyof typeof TerminationType];