Class: Quickfix::LastQtyChanged

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

Returns a new instance of LastQtyChanged.



46299
46300
46301
46302
46303
46304
46305
# File 'lib/quickfix_fields.rb', line 46299

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

Class Method Details

.fieldObject



46296
46297
46298
# File 'lib/quickfix_fields.rb', line 46296

def LastQtyChanged.field
  return 2301
end