Class: Quickfix::MasterConfirmationDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MasterConfirmationDate

Returns a new instance of MasterConfirmationDate.



25707
25708
25709
25710
25711
25712
25713
# File 'lib/quickfix_fields.rb', line 25707

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