Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamSpaceAllocation

The team space allocation object

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

Constructors

View Source

TeamSpaceAllocation(ulong, ulong, ulong, MemberSpaceLimitType, ulong)

Initializes a new instance of the TeamSpaceAllocation class.

Declaration
public TeamSpaceAllocation(ulong used, ulong allocated, ulong userWithinTeamSpaceAllocated, MemberSpaceLimitType userWithinTeamSpaceLimitType, ulong userWithinTeamSpaceUsedCached)
Parameters
Type Name Description
ulong used

The total space currently used by the user's team (bytes).

ulong allocated

The total space allocated to the user's team (bytes).

ulong userWithinTeamSpaceAllocated

The total space allocated to the user within its team allocated space (0 means that no restriction is imposed on the user's quota within its team).

MemberSpaceLimitType userWithinTeamSpaceLimitType

The type of the space limit imposed on the team member (off, alert_only, stop_sync).

ulong userWithinTeamSpaceUsedCached

An accurate cached calculation of a team member's total space usage (bytes).

Properties

View Source

Allocated

The total space allocated to the user's team (bytes).

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

Used

The total space currently used by the user's team (bytes).

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

UserWithinTeamSpaceAllocated

The total space allocated to the user within its team allocated space (0 means that no restriction is imposed on the user's quota within its team).

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

UserWithinTeamSpaceLimitType

The type of the space limit imposed on the team member (off, alert_only, stop_sync).

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

UserWithinTeamSpaceUsedCached

An accurate cached calculation of a team member's total space usage (bytes).

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