@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
19 lines (18 loc) • 544 B
TypeScript
/**
* Used to identify whether these delivery instructions are for the buyside or the sellside.
* tag: 1164
* @readonly
* @enum {string} (char)
*/
export declare enum SettlObligSource {
/** Instructions of Broker */
InstructionsOfBroker = "1",
/** Instructions for Institution */
InstructionsForInstitution = "2",
/** Investor */
Investor = "3",
/** Buyer's settlement instructions */
BuyersSettlementInstructions = "4",
/** Seller's settlement instructions */
SellersSettlementInstructions = "5"
}