fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 488 B
TypeScript
/**
* 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";
}>;
export type SettlInstSource = (typeof SettlInstSource)[keyof typeof SettlInstSource];