Class: Quickfix::TotalNetValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TotalNetValue

Returns a new instance of TotalNetValue.



15333
15334
15335
15336
15337
15338
15339
# File 'lib/quickfix_fields.rb', line 15333

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

Class Method Details

.fieldObject



15330
15331
15332
# File 'lib/quickfix_fields.rb', line 15330

def TotalNetValue.field
	return 900
end