Class: Quickfix::UnderlyingCapValue

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

Returns a new instance of UnderlyingCapValue.



13929
13930
13931
13932
13933
13934
13935
# File 'lib/quickfix_fields.rb', line 13929

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

Class Method Details

.fieldObject



13926
13927
13928
# File 'lib/quickfix_fields.rb', line 13926

def UnderlyingCapValue.field
	return 1038
end