Class: Quickfix::PosAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmt

Returns a new instance of PosAmt.



9717
9718
9719
9720
9721
9722
9723
# File 'lib/quickfix_fields.rb', line 9717

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