Class: Quickfix::UnderlyingCollectAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCollectAmount



13292
13293
13294
13295
13296
13297
13298
# File 'lib/quickfix_fields.rb', line 13292

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