Class: Quickfix::ValuationSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ValuationSource

Returns a new instance of ValuationSource.



42373
42374
42375
42376
42377
42378
42379
# File 'lib/quickfix_fields.rb', line 42373

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