UNPKG

jspurefix

Version:
27 lines (25 loc) 884 B
import { IStandardHeader } from './set/standard_header' import { IOrdAllocGrp } from './set/ord_alloc_grp' /* ******************************************************* * ConfirmationRequest can be found in Volume 5 of the * * * * specification * ******************************************************* */ export interface IConfirmationRequest { ConfirmReqID: string// 859 ConfirmType: number// 773 AllocID?: string// 70 SecondaryAllocID?: string// 793 IndividualAllocID?: string// 467 TransactTime: Date// 60 AllocAccount?: string// 79 AllocAcctIDSource?: number// 661 AllocAccountType?: number// 798 Text?: string// 58 EncodedTextLen?: number// 354 EncodedText?: Buffer// 355 StandardHeader?: IStandardHeader OrdAllocGrp?: IOrdAllocGrp[] }