authoritiesEntity element
| Type: | authorityEntity |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
A serialized representation of this class can be placed in the entity body of a response to the API. This particular entity holds a set of user authorities.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<authoritiesEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<userId>...</userId>
<authorities>...</authorities>
<authorities>...</authorities>
<!--...more "authorities" elements...-->
</authoritiesEntity>
Example JSON
{
"userId" : "...",
"authorities" : [ "...", ... ],
"revision" : {
"clientId" : "...",
"version" : ...
}
}