Class: Quickfix::OrderResponseLevel

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderResponseLevel

Returns a new instance of OrderResponseLevel.



60417
60418
60419
60420
60421
60422
60423
# File 'lib/quickfix_fields.rb', line 60417

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