Response containing localization info
| 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. |
| total | number | Total number of localizations (including localizations in channels without permission and for folders localizations of subitems) |
| hidden | number | Number of localizations the user has no permission to see |
| online | array of number | IDs of pages, that are online |
| offline | array of number | IDs of pages, that are offline |
Properties inherited from GenericResponse |
||
| messages | array of Message | Messages contained in the response (which should be shown to the user) |
| responseInfo | ResponseInfo | |
Example
{
"masterId" : 12345,
"masterNodeId" : 12345,
"nodeIds" : {
"property1" : 12345,
"property2" : 12345
},
"total" : 12345,
"hidden" : 12345,
"online" : [ 12345, 12345 ],
"offline" : [ 12345, 12345 ],
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}