Class: Quickfix::OrderRequestID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



60349
60350
60351
# File 'lib/quickfix_fields.rb', line 60349

def OrderRequestID.field
  return 2422
end