ResponseInfo Data Type

Response information that contains a response code and a response message.

The response message should not be internationalized. If you want to provide a user friendly message use the message object instead.

Properties
name data type description
responseCode ResponseCode Response code
responseMessage string Response message
property string Property, that caused the request to fail (may be null)

Example

{
  "responseCode" : "OK",
  "responseMessage" : "...",
  "property" : "..."
}