Class: Quickfix::ValuationTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ValuationTime

Returns a new instance of ValuationTime.



40215
40216
40217
40218
40219
40220
40221
# File 'lib/quickfix_fields.rb', line 40215

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