Class: Quickfix::BidID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ BidID

Returns a new instance of BidID.



4855
4856
4857
4858
4859
4860
4861
# File 'lib/quickfix_fields.rb', line 4855

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

Class Method Details

.fieldObject



4852
4853
4854
# File 'lib/quickfix_fields.rb', line 4852

def BidID.field
	return 390
end