Show / Hide Table of Contents

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.

Inheritance
System.Object
GroupSummary
GroupInfo
Inherited Members
GroupSummary.GroupName
GroupSummary.GroupId
GroupSummary.GroupManagementType
GroupSummary.GroupExternalId
GroupSummary.MemberCount
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 Source

GroupInfo(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 Source

GroupType

The type of group.

Declaration
public GroupType GroupType { get; protected set; }
Property Value
Type Description
GroupType
| Improve this Doc View Source

IsMember

If the current user is a member of the group.

Declaration
public bool IsMember { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsOwner

If the current user is an owner of the group.

Declaration
public bool IsOwner { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

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

See Also

GroupMembershipInfo
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupInfo(String, String, GroupManagementType, GroupType, Boolean, Boolean, Boolean, String, Nullable<UInt32>)
  • Properties
    • GroupType
    • IsMember
    • IsOwner
    • SameTeam
  • See Also
Back to top Generated by DocFX