Class: Quickfix::UnderlyingIndexAnnexDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingIndexAnnexDate

Returns a new instance of UnderlyingIndexAnnexDate.



26253
26254
26255
26256
26257
26258
26259
# File 'lib/quickfix_fields.rb', line 26253

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