Class: Quickfix::UnderlyingID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingID

Returns a new instance of UnderlyingID.



78019
78020
78021
78022
78023
78024
78025
# File 'lib/quickfix_fields.rb', line 78019

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