Class: Quickfix::ValuationSource

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



42370
42371
42372
# File 'lib/quickfix_fields.rb', line 42370

def ValuationSource.field
	return 2002
end