Class: Quickfix::OrderEventQty

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

Returns a new instance of OrderEventQty.



23536
23537
23538
23539
23540
23541
23542
# File 'lib/quickfix_fields.rb', line 23536

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

Class Method Details

.fieldObject



23533
23534
23535
# File 'lib/quickfix_fields.rb', line 23533

def OrderEventQty.field
  return 1800
end