userGroupEntity element

Type: userGroupEntity
Namespace: (default namespace)
XML Schema: ns0.xsd

A serialized representation of this class can be placed in the entity body of a request or response to or from the API. This particular entity holds a reference to a UserGroupDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <userGroupEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <userGroup> <group>...</group> <userIds>...</userIds> <userIds>...</userIds> <!--...more "userIds" elements...--> <status>...</status> <authorities>...</authorities> <authorities>...</authorities> <!--...more "authorities" elements...--> </userGroup> </userGroupEntity>

Example JSON

{ "userGroup" : { "group" : "...", "userIds" : [ "...", ... ], "status" : "...", "authorities" : [ "...", ... ] }, "revision" : { "clientId" : "...", "version" : ... } }