Show / Hide Table of Contents

Class GroupSummary

Information about a group.

Inheritance
System.Object
GroupSummary
GroupInfo
GroupFullInfo
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.TeamCommon
Assembly: Dropbox.Api.dll
Syntax
public class GroupSummary

Constructors

| Improve this Doc View Source

GroupSummary(String, String, GroupManagementType, String, Nullable<UInt32>)

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
System.String groupName

The group name

System.String groupId

The group id

GroupManagementType groupManagementType

Who is allowed to manage the group.

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

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
System.String
| Improve this Doc View Source

GroupId

Gets the group id of the group summary

Declaration
public string GroupId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

GroupManagementType

Who is allowed to manage the group.

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

GroupName

Gets the group name of the group summary

Declaration
public string GroupName { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

MemberCount

The number of members in the group.

Declaration
public uint? MemberCount { get; protected set; }
Property Value
Type Description
System.Nullable<System.UInt32>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupSummary(String, String, GroupManagementType, String, Nullable<UInt32>)
  • Properties
    • GroupExternalId
    • GroupId
    • GroupManagementType
    • GroupName
    • MemberCount
Back to top Generated by DocFX