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 FullAccount class.
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.String | accountId | The user's unique Dropbox ID. |
Name | name | Details of a user's name. |
System.String | The user's email address. Do not rely on this without checking
the |
|
System.Boolean | emailVerified | Whether the user has verified their email address. |
System.Boolean | disabled | Whether the user has been disabled. |
System.String | locale | The language that the user specified. Locale tags will be IETF language tags. |
System.String | referralLink | The user's referral link. |
System.Boolean | isPaired | Whether the user has a personal and work account. If the
current account is personal, then |
AccountType | accountType | What type of account this user has. |
RootInfo | rootInfo | The root info for this account. |
System.String | profilePhotoUrl | URL for the photo representing the user, if one is set. |
System.String | country | The user's two-letter country code, if available. Country codes are based on ISO 3166-1. |
FullTeam | team | If this account is a member of a team, information about that team. |
System.String | 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 |
---|---|
AccountType |
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.String |
IsPaired
Whether the user has a personal and work account. If the current account is
personal, then Team will always be null
, but IsPaired will indicate if a work account is linked.
Declaration
public bool IsPaired { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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.String |
ReferralLink
The user's referral link.
Declaration
public string ReferralLink { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
RootInfo
The root info for this account.
Declaration
public RootInfo RootInfo { get; protected set; }
Property Value
Type | Description |
---|---|
RootInfo |
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 |
---|---|
FullTeam |
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.String |