Class: Quickfix::OrderEntryID

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) ⇒ OrderEntryID

Returns a new instance of OrderEntryID.



60456
60457
60458
60459
60460
60461
60462
# File 'lib/quickfix_fields.rb', line 60456

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

Class Method Details

.fieldObject



60453
60454
60455
# File 'lib/quickfix_fields.rb', line 60453

def OrderEntryID.field
  return 2430
end