Class: Quickfix::UnderlyingEventDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventDate



25967
25968
25969
25970
25971
25972
25973
# File 'lib/quickfix_fields.rb', line 25967

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