Class GroupUpdateArgs
The group update args object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupUpdateArgs : IncludeMembersArg
Constructors
| Improve this Doc View SourceGroupUpdateArgs(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 SourceGroup
Specify a group.
Declaration
public GroupSelector Group { get; protected set; }
Property Value
Type | Description |
---|---|
GroupSelector |
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 |
NewGroupManagementType
Set new group management type, if provided.
Declaration
public GroupManagementType NewGroupManagementType { get; protected set; }
Property Value
Type | Description |
---|---|
GroupManagementType |
NewGroupName
Optional argument. Set group name to this if provided.
Declaration
public string NewGroupName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |