Class: Quickfix::UnderlyingCapValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCapValue

Returns a new instance of UnderlyingCapValue.



5895
5896
5897
5898
5899
5900
5901
# File 'lib/quickfix_fields.rb', line 5895

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

Class Method Details

.fieldObject



5892
5893
5894
# File 'lib/quickfix_fields.rb', line 5892

def UnderlyingCapValue.field
	return 1038
end