Class: Quickfix::TotalNetValue

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

Instance Method Summary collapse

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