Class: Quickfix::UnderlyingStrikeValue
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::UnderlyingStrikeValue
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ UnderlyingStrikeValue
constructor
A new instance of UnderlyingStrikeValue.
Constructor Details
#initialize(data = nil) ⇒ UnderlyingStrikeValue
Returns a new instance of UnderlyingStrikeValue.
26474 26475 26476 26477 26478 26479 26480 |
# File 'lib/quickfix_fields.rb', line 26474 def initialize(data = nil) if( data == nil ) super(2022) else super(2022, data) end end |