Class: Quickfix::UnderlyingOptPayoutType

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

Class Method Details

.fieldObject



26549
26550
26551
# File 'lib/quickfix_fields.rb', line 26549

def UnderlyingOptPayoutType.field
  return 2028
end