Class: Quickfix::UnderlyingOptPayoutAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingOptPayoutAmount

Returns a new instance of UnderlyingOptPayoutAmount.



26565
26566
26567
26568
26569
26570
26571
# File 'lib/quickfix_fields.rb', line 26565

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