UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 642 B
/** * Settlement method for a contract or instrument. Additional values may be used with bilateral agreement. * - Tag: 1193 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const SettlMethod: Readonly<{ /** Cash settlement required */ readonly CashSettlementRequired: "C"; /** Physical settlement required */ readonly PhysicalSettlementRequired: "P"; /** Election at exercise The settlement method will be elected at the time of contract exercise. */ readonly Election: "E"; }>; export type SettlMethod = (typeof SettlMethod)[keyof typeof SettlMethod];