Class: Quickfix::TotalNetValue

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

Returns a new instance of TotalNetValue.



12174
12175
12176
12177
12178
12179
12180
# File 'lib/quickfix_fields.rb', line 12174

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

Class Method Details

.fieldObject



12171
12172
12173
# File 'lib/quickfix_fields.rb', line 12171

def TotalNetValue.field
	return 900
end