Class: Quickfix::DividendAmountType

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

Returns a new instance of DividendAmountType.



63771
63772
63773
63774
63775
63776
63777
# File 'lib/quickfix_fields.rb', line 63771

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

Class Method Details

.fieldObject



63768
63769
63770
# File 'lib/quickfix_fields.rb', line 63768

def DividendAmountType.field
  return 42247
end