Class Account
The amount of detail revealed about an account depends on the user being queried and the user making the query.
Inherited Members
Namespace: Dropbox.Api.Users
Assembly: Dropbox.Api.dll
Syntax
public class Account
Constructors
| Improve this Doc View SourceAccount(String, Name, String, Boolean, Boolean, String)
Initializes a new instance of the Account class.
Declaration
public Account(string accountId, Name name, string email, bool emailVerified, bool disabled, string profilePhotoUrl = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
accountId | The user's unique Dropbox ID. |
Name | name | Details of a user's name. |
System. |
The user's email address. Do not rely on this without checking
the |
|
System. |
emailVerified | Whether the user has verified their email address. |
System. |
disabled | Whether the user has been disabled. |
System. |
profilePhotoUrl | URL for the photo representing the user, if one is set. |
Properties
| Improve this Doc View SourceAccountId
The user's unique Dropbox ID.
Declaration
public string AccountId { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Disabled
Whether the user has been disabled.
Declaration
public bool Disabled { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
The user's email address. Do not rely on this without checking the Email
Declaration
public string Email { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
EmailVerified
Whether the user has verified their email address.
Declaration
public bool EmailVerified { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Name
Details of a user's name.
Declaration
public Name Name { get; protected set; }
Property Value
Type | Description |
---|---|
Name |
ProfilePhotoUrl
URL for the photo representing the user, if one is set.
Declaration
public string ProfilePhotoUrl { get; protected set; }
Property Value
Type | Description |
---|---|
System. |