Class: Quickfix::NumberOfBuyOrders

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumberOfBuyOrders

Returns a new instance of NumberOfBuyOrders.



60703
60704
60705
60706
60707
60708
60709
# File 'lib/quickfix_fields.rb', line 60703

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