jspurefix
Version:
pure node js fix engine
43 lines (42 loc) • 1.39 kB
TypeScript
import { IStandardHeader } from './set/standard_header';
import { IStandardTrailer } from './set/standard_trailer';
export interface ISettlementInstructions {
StandardHeader: IStandardHeader;
SettlInstID: string;
SettlInstTransType: string;
SettlInstRefID: string;
SettlInstMode: string;
SettlInstSource: string;
AllocAccount: string;
SettlLocation?: string;
TradeDate?: Date;
AllocID?: string;
LastMkt?: string;
TradingSessionID?: string;
Side?: string;
SecurityType?: string;
EffectiveTime?: Date;
TransactTime: Date;
ClientID?: string;
ExecBroker?: string;
StandInstDbType?: number;
StandInstDbName?: string;
StandInstDbID?: string;
SettlDeliveryType?: number;
SettlDepositoryCode?: string;
SettlBrkrCode?: string;
SettlInstCode?: string;
SecuritySettlAgentName?: string;
SecuritySettlAgentCode?: string;
SecuritySettlAgentAcctNum?: string;
SecuritySettlAgentAcctName?: string;
SecuritySettlAgentContactName?: string;
SecuritySettlAgentContactPhone?: string;
CashSettlAgentName?: string;
CashSettlAgentCode?: string;
CashSettlAgentAcctNum?: string;
CashSettlAgentAcctName?: string;
CashSettlAgentContactName?: string;
CashSettlAgentContactPhone?: string;
StandardTrailer: IStandardTrailer;
}