Class: Quickfix::PosAmtPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



78042
78043
78044
# File 'lib/quickfix_fields.rb', line 78042

def PosAmtPrice.field
  return 2876
end