Class: Quickfix::ValuationDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ValuationDate

Returns a new instance of ValuationDate.



40202
40203
40204
40205
40206
40207
40208
# File 'lib/quickfix_fields.rb', line 40202

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