Class: Quickfix::PosQtyStatus

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

Returns a new instance of PosQtyStatus.



9691
9692
9693
9694
9695
9696
9697
# File 'lib/quickfix_fields.rb', line 9691

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

Class Method Details

.fieldObject



9688
9689
9690
# File 'lib/quickfix_fields.rb', line 9688

def PosQtyStatus.field
  return 706
end