Class: Quickfix::UnderlyingStrikePriceDeterminationMethod

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

Returns a new instance of UnderlyingStrikePriceDeterminationMethod.



26487
26488
26489
26490
26491
26492
26493
# File 'lib/quickfix_fields.rb', line 26487

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

Class Method Details

.fieldObject



26484
26485
26486
# File 'lib/quickfix_fields.rb', line 26484

def UnderlyingStrikePriceDeterminationMethod.field
  return 2023
end