UNPKG

jspurefix

Version:
41 lines (40 loc) 1.33 kB
import { IStandardHeader } from './set/standard_header'; import { IStandardTrailer } from './set/standard_trailer'; export interface ISettlementInstructions { StandardHeader: IStandardHeader; SettlInstID: string; SettlInstTransType: string; SettlInstMode: string; SettlInstSource: string; AllocAccount: string; SettlLocation?: string; TradeDate?: string; AllocID?: string; LastMkt?: string; Side?: string; SecurityType?: string; EffectiveTime?: string; TransactTime: string; 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; }