UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 402 B
/** * Indicates source of Settlement Instructions * - Tag: 165 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const SettlInstSource: Readonly<{ /** Broker's Instructions */ readonly BrokerCredit: '1'; /** Institution's Instructions */ readonly Institution: '2'; /** Investor (e.g. CIV use) */ readonly Investor: '3'; }>;