Generic response containing the response code and response messages (no additional objects)
| name | data type | description |
|---|---|---|
| masterId | number | The ID of the master object. |
| masterNodeId | number | The ID of the node the master object resides in. |
| nodeIds | map of number | A map from object IDs to the respective channels of the objects. |
| status | array of map of number | |
Properties inherited from GenericResponse |
||
| messages | array of Message | |
| responseInfo | ResponseInfo | |
Example
{
"masterId" : 12345,
"masterNodeId" : 12345,
"nodeIds" : {
"property1" : 12345,
"property2" : 12345
},
"status" : {
"property1" : [ 12345, 12345 ],
"property2" : [ 12345, 12345 ]
},
"messages" : [ {
"fieldName" : "...",
"message" : "...",
"type" : "NEUTRAL",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
}, {
"fieldName" : "...",
"message" : "...",
"type" : "SUCCESS",
"timestamp" : 12345,
"image" : "...",
"sender" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"id" : 12345
} ],
"responseInfo" : {
"responseCode" : "FAILURE",
"responseMessage" : "...",
"property" : "..."
}
}