Class: Quickfix::DividendAmountType

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

Instance Method Summary collapse

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