Class: Quickfix::PayReportID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PayReportID

Returns a new instance of PayReportID.



77044
77045
77046
77047
77048
77049
77050
# File 'lib/quickfix_fields.rb', line 77044

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