Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupSummary

Information about a group.

Inheritance
object
GroupSummary
GroupInfo
GroupFullInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamCommon
Assembly: Dropbox.Api.dll
Syntax
public class GroupSummary

Constructors

View Source

GroupSummary(string, string, GroupManagementType, string, uint?)

Initializes a new instance of the GroupSummary class.

Declaration
public GroupSummary(string groupName, string groupId, GroupManagementType groupManagementType, 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.

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 Source

GroupExternalId

External ID of group. This is an arbitrary ID that an admin can attach to a group.

Declaration
public string GroupExternalId { get; protected set; }
Property Value
Type Description
string
View Source

GroupId

Gets the group id of the group summary

Declaration
public string GroupId { get; protected set; }
Property Value
Type Description
string
View Source

GroupManagementType

Who is allowed to manage the group.

Declaration
public GroupManagementType GroupManagementType { get; protected set; }
Property Value
Type Description
GroupManagementType
View Source

GroupName

Gets the group name of the group summary

Declaration
public string GroupName { get; protected set; }
Property Value
Type Description
string
View Source

MemberCount

The number of members in the group.

Declaration
public uint? MemberCount { get; protected set; }
Property Value
Type Description
uint?
  • View Source
In this article
Back to top Dropbox .NET SDK