Class FullAccount
Detailed information about the current user's account.
Inherited Members
Namespace: Dropbox.Api.Users
Assembly: Dropbox.Api.dll
Syntax
public class FullAccount : Account
Constructors
| Improve this Doc View SourceFullAccount(String, Name, String, Boolean, Boolean, String, String, Boolean, AccountType, RootInfo, String, String, FullTeam, String)
Initializes a new instance of the Full
Declaration
public FullAccount(string accountId, Name name, string email, bool emailVerified, bool disabled, string locale, string referralLink, bool isPaired, AccountType accountType, RootInfo rootInfo, string profilePhotoUrl = null, string country = null, FullTeam team = null, string teamMemberId = 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. |
locale | The language that the user specified. Locale tags will be IETF language tags. |
System. |
referralLink | The user's referral link. |
System. |
isPaired | Whether the user has a personal and work account. If the
current account is personal, then |
Account |
accountType | What type of account this user has. |
Root |
rootInfo | The root info for this account. |
System. |
profilePhotoUrl | URL for the photo representing the user, if one is set. |
System. |
country | The user's two-letter country code, if available. Country codes are based on ISO 3166-1. |
Full |
team | If this account is a member of a team, information about that team. |
System. |
teamMemberId | This account's unique team member id. This field will
only be present if |
Properties
| Improve this Doc View SourceAccountType
What type of account this user has.
Declaration
public AccountType AccountType { get; protected set; }
Property Value
Type | Description |
---|---|
Account |
Country
The user's two-letter country code, if available. Country codes are based on ISO 3166-1.
Declaration
public string Country { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
IsPaired
Whether the user has a personal and work account. If the current account is
personal, then Team will always be null
, but Is
Declaration
public bool IsPaired { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Locale
The language that the user specified. Locale tags will be IETF language tags.
Declaration
public string Locale { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
ReferralLink
The user's referral link.
Declaration
public string ReferralLink { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
RootInfo
The root info for this account.
Declaration
public RootInfo RootInfo { get; protected set; }
Property Value
Type | Description |
---|---|
Root |
Team
If this account is a member of a team, information about that team.
Declaration
public FullTeam Team { get; protected set; }
Property Value
Type | Description |
---|---|
Full |
TeamMemberId
This account's unique team member id. This field will only be present if Team is present.
Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type | Description |
---|---|
System. |