Show / Hide Table of Contents

Class TeamSpaceAllocation

The team space allocation object

Inheritance
System.Object
TeamSpaceAllocation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Users
Assembly: Dropbox.Api.dll
Syntax
public class TeamSpaceAllocation

Constructors

| Improve this Doc View Source

TeamSpaceAllocation(UInt64, UInt64, UInt64, MemberSpaceLimitType, UInt64)

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
System.UInt64 used

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

System.UInt64 allocated

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

System.UInt64 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).

System.UInt64 userWithinTeamSpaceUsedCached

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

Properties

| Improve this Doc View Source

Allocated

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

Declaration
public ulong Allocated { get; protected set; }
Property Value
Type Description
System.UInt64
| Improve this Doc 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
System.UInt64
| Improve this Doc 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
System.UInt64
| Improve this Doc 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
| Improve this Doc 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
System.UInt64
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • TeamSpaceAllocation(UInt64, UInt64, UInt64, MemberSpaceLimitType, UInt64)
  • Properties
    • Allocated
    • Used
    • UserWithinTeamSpaceAllocated
    • UserWithinTeamSpaceLimitType
    • UserWithinTeamSpaceUsedCached
Back to top Generated by DocFX