Class: Quickfix::CommissionCurrency

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CommissionCurrency

Returns a new instance of CommissionCurrency.



62887
62888
62889
62890
62891
62892
62893
# File 'lib/quickfix_fields.rb', line 62887

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