Class: Quickfix::TradeVolType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeVolType

Returns a new instance of TradeVolType.



23354
23355
23356
23357
23358
23359
23360
# File 'lib/quickfix_fields.rb', line 23354

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