UNPKG

jspurefix

Version:
23 lines (22 loc) 758 B
import { IStandardHeader } from './set/standard_header'; import { IParties } from './set/parties'; import { IRgstDtlsGrp } from './set/rgst_dtls_grp'; import { IRgstDistInstGrp } from './set/rgst_dist_inst_grp'; import { IStandardTrailer } from './set/standard_trailer'; export interface IRegistrationInstructions { StandardHeader: IStandardHeader; RegistID: string; ClearingBusinessDate?: Date; RegistTransType: string; RegistRefID: string; ClOrdID?: string; Parties?: IParties; Account?: string; AcctIDSource?: number; RegistAcctType?: string; TaxAdvantageType?: number; OwnershipType?: string; RgstDtlsGrp?: IRgstDtlsGrp; RgstDistInstGrp?: IRgstDistInstGrp; StandardTrailer: IStandardTrailer; }