Class: Quickfix::TradeQty

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) ⇒ TradeQty

Returns a new instance of TradeQty.



24147
24148
24149
24150
24151
24152
24153
# File 'lib/quickfix_fields.rb', line 24147

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

Class Method Details

.fieldObject



24144
24145
24146
# File 'lib/quickfix_fields.rb', line 24144

def TradeQty.field
  return 1843
end