Class GroupFullInfo
Full description of a group.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupFullInfo : GroupSummary
Constructors
View SourceGroupFullInfo(string, string, GroupManagementType, ulong, string, uint?, IEnumerable<GroupMemberInfo>)
Initializes a new instance of the GroupFullInfo class.
Declaration
public GroupFullInfo(string groupName, string groupId, GroupManagementType groupManagementType, ulong created, string groupExternalId = null, uint? memberCount = null, IEnumerable<GroupMemberInfo> members = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | groupName | The group name |
| string | groupId | The group id |
| GroupManagementType | groupManagementType | Who is allowed to manage the group. |
| ulong | created | The group creation time as a UTC timestamp in milliseconds since the Unix epoch. |
| 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. |
| IEnumerable<GroupMemberInfo> | members | List of group members. |
Properties
View SourceCreated
The group creation time as a UTC timestamp in milliseconds since the Unix epoch.
Declaration
public ulong Created { get; protected set; }
Property Value
| Type | Description |
|---|---|
| ulong |
Members
List of group members.
Declaration
public IList<GroupMemberInfo> Members { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<GroupMemberInfo> |