Class: Quickfix::UnderlyingDividendAmountType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDividendAmountType

Returns a new instance of UnderlyingDividendAmountType.



71480
71481
71482
71483
71484
71485
71486
# File 'lib/quickfix_fields.rb', line 71480

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