Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamMemberRole

A role which can be attached to a team member. This replaces AdminTier; each AdminTier corresponds to a new TeamMemberRole with a matching name.

Inheritance
object
TeamMemberRole
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class TeamMemberRole

Constructors

View Source

TeamMemberRole(string, string, string)

Initializes a new instance of the TeamMemberRole class.

Declaration
public TeamMemberRole(string roleId, string name, string description)
Parameters
Type Name Description
string roleId

A string containing encoded role ID. For roles defined by Dropbox, this is the same across all teams.

string name

The role display name.

string description

Role description. Describes which permissions come with this role.

Properties

View Source

Description

Role description. Describes which permissions come with this role.

Declaration
public string Description { get; protected set; }
Property Value
Type Description
string
View Source

Name

The role display name.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
string
View Source

RoleId

A string containing encoded role ID. For roles defined by Dropbox, this is the same across all teams.

Declaration
public string RoleId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK