5.15 UserGroup Resources
Info : available in Thru File Sharing version 9.10.8 and later.
5.15.1 ThruPublicGroupInfo Structure
ThruPublicGroupInfo structure contains information about Thru file sharing user account.
Item Name | Data Type | Sample Value | Comments |
Id | String | 1Q1OBQWVHTROE | Identifier of a group in Thru |
Name | String | Group1 | Group Name |
Description | String | Cust1 Group | Group Description |
UserGroupType | int | 16 | 1 – 17: built-in security groups 0: user defined groups |
ModifyRole | int | 4
| Manager = 4, Administrator = 5 |
Sample JSON
{
"Id": "XXXXXXXXXXX",
"Name": "ACCOUNT APPROVALS",
"Description": "Build-in group to approve account requests.",
"UserGroupType": 16,
"ModifyRole": 5
}
Data Transfer Object
public class ThruPublicGroupInfo
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public FTHUserGroupType UserGroupType { get; set; }
public FTHRole ModifyRole { get; set; }
public string ExpirationRuleDefID { get; set; }
}