Class: Quickfix::UnderlyingFutureID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingFutureID

Returns a new instance of UnderlyingFutureID.



72312
72313
72314
72315
72316
72317
72318
# File 'lib/quickfix_fields.rb', line 72312

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