Class: Quickfix::NoPriceQualifiers

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

Returns a new instance of NoPriceQualifiers.



75757
75758
75759
75760
75761
75762
75763
# File 'lib/quickfix_fields.rb', line 75757

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

Class Method Details

.fieldObject



75754
75755
75756
# File 'lib/quickfix_fields.rb', line 75754

def NoPriceQualifiers.field
  return 2709
end