Class: Quickfix::QtyType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ QtyType

Returns a new instance of QtyType.



11576
11577
11578
11579
11580
11581
11582
# File 'lib/quickfix_fields.rb', line 11576

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

Class Method Details

.fieldObject



11573
11574
11575
# File 'lib/quickfix_fields.rb', line 11573

def QtyType.field
  return 854
end