Class: Quickfix::LastQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastQty

Returns a new instance of LastQty.



8391
8392
8393
8394
8395
8396
8397
# File 'lib/quickfix_fields.rb', line 8391

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

Class Method Details

.fieldObject



8388
8389
8390
# File 'lib/quickfix_fields.rb', line 8388

def LastQty.field
  return 32
end