Class: Quickfix::OrderQty2

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

Returns a new instance of OrderQty2.



2905
2906
2907
2908
2909
2910
2911
# File 'lib/quickfix_fields.rb', line 2905

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

Class Method Details

.fieldObject



2902
2903
2904
# File 'lib/quickfix_fields.rb', line 2902

def OrderQty2.field
  return 192
end