Class: Quickfix::BidID

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

Instance Method Summary collapse

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