Class: Quickfix::VersusPurchaseDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ VersusPurchaseDate

Returns a new instance of VersusPurchaseDate.



22925
22926
22927
22928
22929
22930
22931
# File 'lib/quickfix_fields.rb', line 22925

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