Class: Quickfix::UnderlyingProvisionText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingProvisionText

Returns a new instance of UnderlyingProvisionText.



60040
60041
60042
60043
60044
60045
60046
# File 'lib/quickfix_fields.rb', line 60040

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