Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamGetInfoResult

The team get info result object

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

Constructors

View Source

TeamGetInfoResult(string, string, uint, uint, TeamMemberPolicies, uint)

Initializes a new instance of the TeamGetInfoResult class.

Declaration
public TeamGetInfoResult(string name, string teamId, uint numLicensedUsers, uint numProvisionedUsers, TeamMemberPolicies policies, uint numUsedLicenses = 0)
Parameters
Type Name Description
string name

The name of the team.

string teamId

The ID of the team.

uint numLicensedUsers

The number of licenses available to the team.

uint numProvisionedUsers

The number of accounts that have been invited or are already active members of the team.

TeamMemberPolicies policies

The policies

uint numUsedLicenses

The number of licenses used on the team.

Properties

View Source

Name

The name of the team.

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

NumLicensedUsers

The number of licenses available to the team.

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

NumProvisionedUsers

The number of accounts that have been invited or are already active members of the team.

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

NumUsedLicenses

The number of licenses used on the team.

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

Policies

Gets the policies of the team get info result

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

TeamId

The ID of the team.

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