Class: Quickfix::QtyType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QtyType

Returns a new instance of QtyType.



7546
7547
7548
7549
7550
7551
7552
# File 'lib/quickfix_fields.rb', line 7546

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

Class Method Details

.fieldObject



7543
7544
7545
# File 'lib/quickfix_fields.rb', line 7543

def QtyType.field
  return 854
end