Class GroupFullInfo
Full description of 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.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupFullInfo : GroupSummary
Constructors
| Improve this Doc View SourceGroupFullInfo(String, String, GroupManagementType, UInt64, String, Nullable<UInt32>, 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 |
---|---|---|
System.String | groupName | The group name |
System.String | groupId | The group id |
GroupManagementType | groupManagementType | Who is allowed to manage the group. |
System.UInt64 | created | The group creation time as a UTC timestamp in milliseconds since the Unix epoch. |
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. |
System.Collections.Generic.IEnumerable<GroupMemberInfo> | members | List of group members. |
Properties
| Improve this Doc 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 |
---|---|
System.UInt64 |
Members
List of group members.
Declaration
public IList<GroupMemberInfo> Members { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<GroupMemberInfo> |