Response containing permissions and role assignments
name | data type | description |
---|---|---|
perms | array of TypePermissionItem | Permissions |
roles | array of RoleItem | Roles |
Properties inherited from GenericResponse |
||
messages | array of Message | Messages contained in the response (which should be shown to the user) |
responseInfo | ResponseInfo |
Example
{ "perms" : [ { "type" : "updatejobs", "category" : "...", "label" : "...", "description" : "...", "editable" : true, "value" : true }, { "type" : "updateinheritance", "category" : "...", "label" : "...", "description" : "...", "editable" : true, "value" : true } ], "roles" : [ { "description" : "...", "editable" : true, "id" : 12345, "value" : true, "label" : "..." }, { "description" : "...", "editable" : true, "id" : 12345, "value" : true, "label" : "..." } ], "messages" : [ { }, { } ], "responseInfo" : { "responseCode" : "OK", "responseMessage" : "...", "property" : "..." } }