Class: Quickfix::UnderlyingOptPayoutType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingOptPayoutType

Returns a new instance of UnderlyingOptPayoutType.



26552
26553
26554
26555
26556
26557
26558
# File 'lib/quickfix_fields.rb', line 26552

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