Show / Hide Table of Contents

Class GroupUpdateArgs

The group update args object

Inheritance
System.Object
IncludeMembersArg
GroupUpdateArgs
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 GroupUpdateArgs : IncludeMembersArg

Constructors

| Improve this Doc View Source

GroupUpdateArgs(GroupSelector, Boolean, String, String, GroupManagementType)

Initializes a new instance of the GroupUpdateArgs class.

Declaration
public GroupUpdateArgs(GroupSelector group, bool returnMembers = true, string newGroupName = null, string newGroupExternalId = null, GroupManagementType newGroupManagementType = null)
Parameters
Type Name Description
GroupSelector group

Specify a 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.

System.String newGroupName

Optional argument. Set group name to this if provided.

System.String newGroupExternalId

Optional argument. New group external ID. If the argument is None, the group's external_id won't be updated. If the argument is empty string, the group's external id will be cleared.

GroupManagementType newGroupManagementType

Set new group management type, if provided.

Properties

| Improve this Doc View Source

Group

Specify a group.

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

NewGroupExternalId

Optional argument. New group external ID. If the argument is None, the group's external_id won't be updated. If the argument is empty string, the group's external id will be cleared.

Declaration
public string NewGroupExternalId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

NewGroupManagementType

Set new group management type, if provided.

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

NewGroupName

Optional argument. Set group name to this if provided.

Declaration
public string NewGroupName { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupUpdateArgs(GroupSelector, Boolean, String, String, GroupManagementType)
  • Properties
    • Group
    • NewGroupExternalId
    • NewGroupManagementType
    • NewGroupName
Back to top Generated by DocFX