Class: Quickfix::UnderlyingQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingQty

Returns a new instance of UnderlyingQty.



11901
11902
11903
11904
11905
11906
11907
# File 'lib/quickfix_fields.rb', line 11901

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