Show / Hide Table of Contents

Class GroupFullInfo

Full description of a group.

Inheritance
System.Object
GroupSummary
GroupFullInfo
Inherited Members
GroupSummary.GroupName
GroupSummary.GroupId
GroupSummary.GroupManagementType
GroupSummary.GroupExternalId
GroupSummary.MemberCount
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 Source

GroupFullInfo(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 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
System.UInt64
| Improve this Doc View Source

Members

List of group members.

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

See Also

GroupMembersChangeResult
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupFullInfo(String, String, GroupManagementType, UInt64, String, Nullable<UInt32>, IEnumerable<GroupMemberInfo>)
  • Properties
    • Created
    • Members
  • See Also
Back to top Generated by DocFX