Response containing disinherit information for multiple objects
| name | data type | description |
|---|---|---|
| exclude | boolean | Flag for exclusion status of all objects. True if the object is be excluded from multichannelling, false if not, null if the exclusion status of the objects is not equal. |
| disinherit | array of number | IDs of nodes/channels, in which the object will not be inherited. This will be ignored, if the object is excluded from multichannelling |
| partialDisinherit | array of number | IDs of nodes/channels, in which some objects will not be inherited. This will be ignored, if the object is excluded from multichannelling |
| inheritable | array of number | IDs of nodes/channels, where this object (actually its master) can be inherited |
Properties inherited from GenericResponse |
||
| messages | array of Message | |
| responseInfo | ResponseInfo | |
Example
{
"exclude" : true,
"disinherit" : [ 12345, 12345 ],
"partialDisinherit" : [ 12345, 12345 ],
"inheritable" : [ 12345, 12345 ],
"messages" : [ {
"fieldName" : "...",
"message" : "...",
"type" : "CRITICAL",
"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" : "PERMISSION",
"responseMessage" : "...",
"property" : "..."
}
}