Dropbox .NET SDK
Show / Hide Table of Contents

Class MembersSetPermissions2Result

The members set permissions2 result object

Inheritance
object
MembersSetPermissions2Result
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 MembersSetPermissions2Result

Constructors

View Source

MembersSetPermissions2Result(string, IEnumerable<TeamMemberRole>)

Initializes a new instance of the MembersSetPermissions2Result class.

Declaration
public MembersSetPermissions2Result(string teamMemberId, IEnumerable<TeamMemberRole> roles = null)
Parameters
Type Name Description
string teamMemberId

The member ID of the user to which the change was applied.

IEnumerable<TeamMemberRole> roles

The roles after the change. Empty in case the user become a non-admin.

Properties

View Source

Roles

The roles after the change. Empty in case the user become a non-admin.

Declaration
public IList<TeamMemberRole> Roles { get; protected set; }
Property Value
Type Description
IList<TeamMemberRole>
View Source

TeamMemberId

The member ID of the user to which the change was applied.

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