Class: Quickfix::UnderlyingListMethod

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

Returns a new instance of UnderlyingListMethod.



26604
26605
26606
26607
26608
26609
26610
# File 'lib/quickfix_fields.rb', line 26604

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

Class Method Details

.fieldObject



26601
26602
26603
# File 'lib/quickfix_fields.rb', line 26601

def UnderlyingListMethod.field
  return 2032
end