Class: Quickfix::UnderlyingStreamVersion

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStreamVersion

Returns a new instance of UnderlyingStreamVersion.



75016
75017
75018
75019
75020
75021
75022
# File 'lib/quickfix_fields.rb', line 75016

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