Class: Quickfix::PosAmtPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmtPrice

Returns a new instance of PosAmtPrice.



78045
78046
78047
78048
78049
78050
78051
# File 'lib/quickfix_fields.rb', line 78045

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