Class: Quickfix::NumBidders

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

Returns a new instance of NumBidders.



5206
5207
5208
5209
5210
5211
5212
# File 'lib/quickfix_fields.rb', line 5206

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

Class Method Details

.fieldObject



5203
5204
5205
# File 'lib/quickfix_fields.rb', line 5203

def NumBidders.field
  return 417
end