jspurefix
Version:
pure node js fix engine
17 lines (15 loc) • 531 B
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IBidCompRspGrp } from './set/bid_comp_rsp_grp'
/*
***********************************************
* BidResponse can be found in Volume 4 of the *
* *
* specification *
***********************************************
*/
export interface IBidResponse {
BidID?: string// 390
ClientBidID?: string// 391
StandardHeader?: IStandardHeader
BidCompRspGrp?: IBidCompRspGrp[]
}