Class: Quickfix::SideVenueType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideVenueType

Returns a new instance of SideVenueType.



24849
24850
24851
24852
24853
24854
24855
# File 'lib/quickfix_fields.rb', line 24849

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