jspurefix
Version:
pure node js fix engine
20 lines (18 loc) • 738 B
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IStandardTrailer } from './set/standard_trailer'
/*
****************************************************************
* The logon message authenticates a user establishing a *
* connection to a remote system. The logon message must be the *
* first message sent by the application requesting to initiate *
* a FIX session. *
****************************************************************
*/
export interface ILogon {
StandardHeader: IStandardHeader
EncryptMethod: number// 98
HeartBtInt: number// 108
RawDataLength?: number// 95
RawData?: Buffer// 96
StandardTrailer: IStandardTrailer
}