Class: Quickfix::TradeNumber

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeNumber

Returns a new instance of TradeNumber.



61678
61679
61680
61681
61682
61683
61684
# File 'lib/quickfix_fields.rb', line 61678

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