Class GroupMembersRemoveArg
The group members remove arg object
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 GroupMembersRemoveArg : IncludeMembersArg
Constructors
| Improve this Doc View SourceGroupMembersRemoveArg(GroupSelector, IEnumerable<UserSelectorArg>, Boolean)
Initializes a new instance of the GroupMembersRemoveArg class.
Declaration
public GroupMembersRemoveArg(GroupSelector group, IEnumerable<UserSelectorArg> users, bool returnMembers = true)
Parameters
Type | Name | Description |
---|---|---|
GroupSelector | group | Group from which users will be removed. |
System.Collections.Generic.IEnumerable<UserSelectorArg> | users | List of users to be removed from 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 SourceGroup
Group from which users will be removed.
Declaration
public GroupSelector Group { get; protected set; }
Property Value
Type | Description |
---|---|
GroupSelector |
Users
List of users to be removed from the group.
Declaration
public IList<UserSelectorArg> Users { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<UserSelectorArg> |