Class: Quickfix::RoutingID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RoutingID

Returns a new instance of RoutingID.



1891
1892
1893
1894
1895
1896
1897
# File 'lib/quickfix_fields.rb', line 1891

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

Class Method Details

.fieldObject



1888
1889
1890
# File 'lib/quickfix_fields.rb', line 1888

def RoutingID.field
	return 217
end