Class GroupSummary
Information about a group.
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 SourceGroupSummary(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 SourceGroupExternalId
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 |
GroupId
Gets the group id of the group summary
Declaration
public string GroupId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
GroupManagementType
Who is allowed to manage the group.
Declaration
public GroupManagementType GroupManagementType { get; protected set; }
Property Value
Type | Description |
---|---|
GroupManagementType |
GroupName
Gets the group name of the group summary
Declaration
public string GroupName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
MemberCount
The number of members in the group.
Declaration
public uint? MemberCount { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt32> |