Dropbox .NET SDK
Show / Hide Table of Contents

Class Team

Information about a team.

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

Constructors

View Source

Team(string, string)

Initializes a new instance of the Team class.

Declaration
public Team(string id, string name)
Parameters
Type Name Description
string id

The team's unique ID.

string name

The name of the team.

Properties

View Source

Id

The team's unique ID.

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

Name

The name of the team.

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

See Also

FullTeam
  • View Source
In this article
Back to top Dropbox .NET SDK