Class: Quickfix::UnderlyingStrikeValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



26471
26472
26473
# File 'lib/quickfix_fields.rb', line 26471

def UnderlyingStrikeValue.field
	return 2022
end