Created by Docfx
  • Home
  • API Documentation
  • API Documentation
Show / Hide Table of Contents

Class UserInfo

Basic information about a user. Use GetAccountAsync(GetAccountArg) and GetAccountBatchAsync(GetAccountBatchArg) to obtain more detailed information.

Inheritance
System.Object
UserInfo
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.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class UserInfo

Constructors

| Improve this Doc View Source

UserInfo(String, String, String, Boolean, String)

Initializes a new instance of the UserInfo class.

Declaration
public UserInfo(string accountId, string email, string displayName, bool sameTeam, string teamMemberId = null)
Parameters
Type Name Description
System.String accountId

The account ID of the user.

System.String email

Email address of user.

System.String displayName

The display name of the user.

System.Boolean sameTeam

If the user is in the same team as current user.

System.String teamMemberId

The team member ID of the shared folder member. Only present if sameTeam is true.

Properties

| Improve this Doc View Source

AccountId

The account ID of the user.

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

DisplayName

The display name of the user.

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

Email

Email address of user.

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

SameTeam

If the user is in the same team as current user.

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

TeamMemberId

The team member ID of the shared folder member. Only present if SameTeam is true.

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

See Also

UserFileMembershipInfo
UserMembershipInfo
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UserInfo(String, String, String, Boolean, String)
  • Properties
    • AccountId
    • DisplayName
    • Email
    • SameTeam
    • TeamMemberId
  • See Also
Back to top Generated by DocFX