Class: Quickfix::BidID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidID

Returns a new instance of BidID.



7156
7157
7158
7159
7160
7161
7162
# File 'lib/quickfix_fields.rb', line 7156

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

Class Method Details

.fieldObject



7153
7154
7155
# File 'lib/quickfix_fields.rb', line 7153

def BidID.field
	return 390
end