Class: Quickfix::OrderRequestID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderRequestID

Returns a new instance of OrderRequestID.



60352
60353
60354
60355
60356
60357
60358
# File 'lib/quickfix_fields.rb', line 60352

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