Class: Quickfix::DividendAveragingMethod

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

Returns a new instance of DividendAveragingMethod.



63602
63603
63604
63605
63606
63607
63608
# File 'lib/quickfix_fields.rb', line 63602

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

Class Method Details

.fieldObject



63599
63600
63601
# File 'lib/quickfix_fields.rb', line 63599

def DividendAveragingMethod.field
  return 42234
end