Dropbox .NET SDK
Show / Hide Table of Contents

Class FullTeam

Detailed information about a team.

Inheritance
object
Team
FullTeam
Inherited Members
Team.Id
Team.Name
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 FullTeam : Team

Constructors

View Source

FullTeam(string, string, TeamSharingPolicies, OfficeAddInPolicy, TopLevelContentPolicy)

Initializes a new instance of the FullTeam class.

Declaration
public FullTeam(string id, string name, TeamSharingPolicies sharingPolicies, OfficeAddInPolicy officeAddinPolicy, TopLevelContentPolicy topLevelContentPolicy)
Parameters
Type Name Description
string id

The team's unique ID.

string name

The name of the team.

TeamSharingPolicies sharingPolicies

Team policies governing sharing.

OfficeAddInPolicy officeAddinPolicy

Team policy governing the use of the Office Add-In.

TopLevelContentPolicy topLevelContentPolicy

Team policy governing whether members can edit team folders at the top level of the team space.

Properties

View Source

OfficeAddinPolicy

Team policy governing the use of the Office Add-In.

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

SharingPolicies

Team policies governing sharing.

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

TopLevelContentPolicy

Team policy governing whether members can edit team folders at the top level of the team space.

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