Class: Quickfix::TradeVersion

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeVersion

Returns a new instance of TradeVersion.



46312
46313
46314
46315
46316
46317
46318
# File 'lib/quickfix_fields.rb', line 46312

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