DAResponse
This object represents the response returned by the executed function. This is available as an attribute in the DARequest object and the client methods can access this object for retrieving response information. The properties of this object and thier usage are listed in the following table.
Property Name
Data Type
Data Flow
Description
objectName
String
Output
Name of the object against which the CRUD operation was performed.
responseCode
Integer
Output
Response code can be 0 or 1. 1-representing success, 0-representing error.
responseMsg
String
Output
Response message. This is an information message.
objectData
ArrayList of Dictionary
Output
Holds the results in an array of Dictionary objects.
errorId
String
Output
Holds the error code. Used for debugging.
errorMsg
String
Output
Custom Error Message.
errorDescription
String
Output
Actual error description retrieved from the exception.
exStackStrace
String
Output
Stack trace of any exceptions encountered during the execution.
Was this helpful?