Class: Quickfix::CollateralCurrencyCodeSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollateralCurrencyCodeSource

Returns a new instance of CollateralCurrencyCodeSource.



78929
78930
78931
78932
78933
78934
78935
# File 'lib/quickfix_fields.rb', line 78929

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