Show / Hide Table of Contents

Class Account

The amount of detail revealed about an account depends on the user being queried and the user making the query.

Inheritance
System.Object
Account
BasicAccount
FullAccount
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.Users
Assembly: Dropbox.Api.dll
Syntax
public class Account

Constructors

| Improve this Doc View Source

Account(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.String accountId

The user's unique Dropbox ID.

Name name

Details of a user's name.

System.String email

The user's email address. Do not rely on this without checking the emailVerified field. Even then, it's possible that the user has since lost access to their email.

System.Boolean emailVerified

Whether the user has verified their email address.

System.Boolean disabled

Whether the user has been disabled.

System.String profilePhotoUrl

URL for the photo representing the user, if one is set.

Properties

| Improve this Doc View Source

AccountId

The user's unique Dropbox ID.

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

Disabled

Whether the user has been disabled.

Declaration
public bool Disabled { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Email

The user's email address. Do not rely on this without checking the EmailVerified field. Even then, it's possible that the user has since lost access to their email.

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

EmailVerified

Whether the user has verified their email address.

Declaration
public bool EmailVerified { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Name

Details of a user's name.

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

ProfilePhotoUrl

URL for the photo representing the user, if one is set.

Declaration
public string ProfilePhotoUrl { get; protected set; }
Property Value
Type Description
System.String

See Also

BasicAccount
FullAccount
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • Account(String, Name, String, Boolean, Boolean, String)
  • Properties
    • AccountId
    • Disabled
    • Email
    • EmailVerified
    • Name
    • ProfilePhotoUrl
  • See Also
Back to top Generated by DocFX