Class GroupInfo
The information about a group. Groups is a way to manage a list of users who need same access permission to the shared folder.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class GroupInfo : GroupSummary
Constructors
View SourceGroupInfo(string, string, GroupManagementType, GroupType, bool, bool, bool, string, uint?)
Initializes a new instance of the GroupInfo class.
Declaration
public GroupInfo(string groupName, string groupId, GroupManagementType groupManagementType, GroupType groupType, bool isMember, bool isOwner, bool sameTeam, string groupExternalId = null, uint? memberCount = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | groupName | The group name |
| string | groupId | The group id |
| GroupManagementType | groupManagementType | Who is allowed to manage the group. |
| GroupType | groupType | Field is deprecated. The type of group. |
| bool | isMember | If the current user is a member of the group. |
| bool | isOwner | If the current user is an owner of the group. |
| bool | sameTeam | If the group is owned by the current user's team. |
| string | groupExternalId | External ID of group. This is an arbitrary ID that an admin can attach to a group. |
| uint? | memberCount | The number of members in the group. |
Properties
View SourceGroupType
Field is deprecated. The type of group.
Declaration
public GroupType GroupType { get; protected set; }
Property Value
| Type | Description |
|---|---|
| GroupType |
IsMember
If the current user is a member of the group.
Declaration
public bool IsMember { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsOwner
If the current user is an owner of the group.
Declaration
public bool IsOwner { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
SameTeam
If the group is owned by the current user's team.
Declaration
public bool SameTeam { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |