Show / Hide Table of Contents

Class GroupMembersAddArg

The group members add arg object

Inheritance
System.Object
IncludeMembersArg
GroupMembersAddArg
Inherited Members
IncludeMembersArg.ReturnMembers
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 GroupMembersAddArg : IncludeMembersArg

Constructors

| Improve this Doc View Source

GroupMembersAddArg(GroupSelector, IEnumerable<MemberAccess>, Boolean)

Initializes a new instance of the GroupMembersAddArg class.

Declaration
public GroupMembersAddArg(GroupSelector group, IEnumerable<MemberAccess> members, bool returnMembers = true)
Parameters
Type Name Description
GroupSelector group

Group to which users will be added.

System.Collections.Generic.IEnumerable<MemberAccess> members

List of users to be added to the group.

System.Boolean returnMembers

Whether to return the list of members in the group. Note that the default value will cause all the group members to be returned in the response. This may take a long time for large groups.

Properties

| Improve this Doc View Source

Group

Group to which users will be added.

Declaration
public GroupSelector Group { get; protected set; }
Property Value
Type Description
GroupSelector
| Improve this Doc View Source

Members

List of users to be added to the group.

Declaration
public IList<MemberAccess> Members { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<MemberAccess>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupMembersAddArg(GroupSelector, IEnumerable<MemberAccess>, Boolean)
  • Properties
    • Group
    • Members
Back to top Generated by DocFX