jspurefix
Version:
pure node js fix engine
19 lines (17 loc) • 870 B
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IStandardTrailer } from './set/standard_trailer'
/*
**************************************************************
* The resend request is sent by the receiving application to *
* initiate the retransmission of messages. This function is *
* utilized if a sequence number gap is detected, if the *
* receiving application lost a message, or as a function of *
* the initialization process. *
**************************************************************
*/
export interface IResendRequest {
StandardHeader: IStandardHeader// [1] BeginString.8, BodyLength.9 .. OnBehalfOfSendingTime.370
BeginSeqNo: number// [2] 7 (Int)
EndSeqNo: number// [3] 16 (Int)
StandardTrailer: IStandardTrailer// [4] SignatureLength.93, Signature.89, CheckSum.10
}