Class: Quickfix::LegStrikeValue

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

Returns a new instance of LegStrikeValue.



42932
42933
42934
42935
42936
42937
42938
# File 'lib/quickfix_fields.rb', line 42932

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

Class Method Details

.fieldObject



42929
42930
42931
# File 'lib/quickfix_fields.rb', line 42929

def LegStrikeValue.field
	return 2182
end