Class: Quickfix::NumOfCompetitors

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

Returns a new instance of NumOfCompetitors.



24901
24902
24903
24904
24905
24906
24907
# File 'lib/quickfix_fields.rb', line 24901

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

Class Method Details

.fieldObject



24898
24899
24900
# File 'lib/quickfix_fields.rb', line 24898

def NumOfCompetitors.field
  return 1913
end