All role entities are structured as follows:
entity
:
[int] Id:
The unique identifier for the role instance
Whether or not the role is custom
IsCustom:[bool]
[string]
Name:
The name associated with the role instance (for example, "Custom Administrators")
The customer-defined description of the role
Description:[string]
[
DateTime
]CreationDate:
The date that the role was created. See DateTime for more information about this data type.[
ushort
]UserCount:
The number of users for the role instance[UserInfo[]] Users:
An array of the following information for each user assigned to the role instance:
: The login information for the user[string] Login
A list of permission object instances representing permissions rules assigned to the user
Permissions:[
List<Permission>
]