Class: Quickfix::UnderlyingEventTimeUnit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventTimeUnit

Returns a new instance of UnderlyingEventTimeUnit.



25993
25994
25995
25996
25997
25998
25999
# File 'lib/quickfix_fields.rb', line 25993

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