fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
16 lines (15 loc) • 456 B
TypeScript
/**
* 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';
readonly Election: 'E';
}>;