Class: Quickfix::ReferenceDataDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ReferenceDataDate

Returns a new instance of ReferenceDataDate.



76251
76252
76253
76254
76255
76256
76257
# File 'lib/quickfix_fields.rb', line 76251

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