CheckResponse Data Type

Generic response containing the response code and response messages (no additional objects)

Properties
name data type description
valid boolean
reason string
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "valid" : true,
  "reason" : "...",
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}