UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 645 B
/** * Used to identify whether these delivery instructions are for the buyside or the sellside. * - Tag: 1164 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const SettlObligSource: Readonly<{ /** Instructions of Broker */ readonly InstructionsOfBroker: '1'; /** Instructions for Institution */ readonly InstructionsForInstitution: '2'; /** Investor */ readonly Investor: '3'; /** Buyer's settlement instructions */ readonly BuyersSettlementInstructions: '4'; /** Seller's settlement instructions */ readonly SellersSettlementInstructions: '5'; }>;