Class MembersSetProfileArg
Exactly one of team_member_id, email, or external_id must be provided to identify the user account.
At least one of new_email, new_external_id, new_given_name, and/or new_surname must be provided.
Inheritance
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MembersSetProfileArg
Constructors
| Improve this Doc View SourceMembersSetProfileArg(UserSelectorArg, String, String, String, String, String, Nullable<Boolean>)
Initializes a new instance of the MembersSetProfileArg class.
Declaration
public MembersSetProfileArg(UserSelectorArg user, string newEmail = null, string newExternalId = null, string newGivenName = null, string newSurname = null, string newPersistentId = null, bool? newIsDirectoryRestricted = null)
Parameters
Type | Name | Description |
---|---|---|
UserSelectorArg | user | Identity of user whose profile will be set. |
System.String | newEmail | New email for member. |
System.String | newExternalId | New external ID for member. |
System.String | newGivenName | New given name for member. |
System.String | newSurname | New surname for member. |
System.String | newPersistentId | New persistent ID. This field only available to teams using persistent ID SAML configuration. |
System.Nullable<System.Boolean> | newIsDirectoryRestricted | New value for whether the user is a directory restricted user. |
Properties
| Improve this Doc View SourceNewEmail
New email for member.
Declaration
public string NewEmail { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
NewExternalId
New external ID for member.
Declaration
public string NewExternalId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
NewGivenName
New given name for member.
Declaration
public string NewGivenName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
NewIsDirectoryRestricted
New value for whether the user is a directory restricted user.
Declaration
public bool? NewIsDirectoryRestricted { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
NewPersistentId
New persistent ID. This field only available to teams using persistent ID SAML configuration.
Declaration
public string NewPersistentId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
NewSurname
New surname for member.
Declaration
public string NewSurname { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
User
Identity of user whose profile will be set.
Declaration
public UserSelectorArg User { get; protected set; }
Property Value
Type | Description |
---|---|
UserSelectorArg |