Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupFullInfo

Full description of a group.

Inheritance
object
GroupSummary
GroupFullInfo
Inherited Members
GroupSummary.GroupName
GroupSummary.GroupId
GroupSummary.GroupManagementType
GroupSummary.GroupExternalId
GroupSummary.MemberCount
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupFullInfo : GroupSummary

Constructors

View Source

GroupFullInfo(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 Source

Created

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
View Source

Members

List of group members.

Declaration
public IList<GroupMemberInfo> Members { get; protected set; }
Property Value
Type Description
IList<GroupMemberInfo>

See Also

GroupMembersChangeResult
  • View Source
In this article
Back to top Dropbox .NET SDK