Class: Quickfix::ClearingFirm

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearingFirm

Returns a new instance of ClearingFirm.



5492
5493
5494
5495
5496
5497
5498
# File 'lib/quickfix_fields.rb', line 5492

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