Class: Quickfix::TradeReportRejectReason

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeReportRejectReason

Returns a new instance of TradeReportRejectReason.



10276
10277
10278
10279
10280
10281
10282
# File 'lib/quickfix_fields.rb', line 10276

def initialize(data = nil)
	if( data == nil )
		super(751)
	else
		super(751, data)
	end
end