Class: Quickfix::TradingCurrencyCodeSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradingCurrencyCodeSource

Returns a new instance of TradingCurrencyCodeSource.



78994
78995
78996
78997
78998
78999
79000
# File 'lib/quickfix_fields.rb', line 78994

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