Class: Quickfix::ComplianceText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ComplianceText

Returns a new instance of ComplianceText.



57726
57727
57728
57729
57730
57731
57732
# File 'lib/quickfix_fields.rb', line 57726

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