Class: Quickfix::NumBidders

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumBidders

Returns a new instance of NumBidders.



16373
16374
16375
16376
16377
16378
16379
# File 'lib/quickfix_fields.rb', line 16373

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

Class Method Details

.fieldObject



16370
16371
16372
# File 'lib/quickfix_fields.rb', line 16370

def NumBidders.field
	return 417
end