Show / Hide Table of Contents

Class FullAccount

Detailed information about the current user's account.

Inheritance
System.Object
Account
FullAccount
Inherited Members
Account.AccountId
Account.Name
Account.Email
Account.EmailVerified
Account.Disabled
Account.ProfilePhotoUrl
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 FullAccount : Account

Constructors

| Improve this Doc View Source

FullAccount(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 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 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 team will always be null, but isPaired will indicate if a work account is linked.

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 team is present.

Properties

| Improve this Doc View Source

AccountType

What type of account this user has.

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

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

ReferralLink

The user's referral link.

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

RootInfo

The root info for this account.

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

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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • FullAccount(String, Name, String, Boolean, Boolean, String, String, Boolean, AccountType, RootInfo, String, String, FullTeam, String)
  • Properties
    • AccountType
    • Country
    • IsPaired
    • Locale
    • ReferralLink
    • RootInfo
    • Team
    • TeamMemberId
Back to top Generated by DocFX