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
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class GroupInfo : GroupSummary
Constructors
| Improve this Doc View SourceGroupInfo(String, String, GroupManagementType, GroupType, Boolean, Boolean, Boolean, String, Nullable<UInt32>)
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 |
---|---|---|
System.String | groupName | The group name |
System.String | groupId | The group id |
GroupManagementType | groupManagementType | Who is allowed to manage the group. |
GroupType | groupType | The type of group. |
System.Boolean | isMember | If the current user is a member of the group. |
System.Boolean | isOwner | If the current user is an owner of the group. |
System.Boolean | sameTeam | If the group is owned by the current user's team. |
System.String | groupExternalId | External ID of group. This is an arbitrary ID that an admin can attach to a group. |
System.Nullable<System.UInt32> | memberCount | The number of members in the group. |
Properties
| Improve this Doc View SourceGroupType
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 |
---|---|
System.Boolean |
IsOwner
If the current user is an owner of the group.
Declaration
public bool IsOwner { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SameTeam
If the group is owned by the current user's team.
Declaration
public bool SameTeam { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |