Class: Quickfix::UnderlyingDatedDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDatedDate



26721
26722
26723
26724
26725
26726
26727
# File 'lib/quickfix_fields.rb', line 26721

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