Dropbox .NET SDK
Show / Hide Table of Contents

Class UserCustomQuotaResult

User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the user has no custom quota set.

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

Constructors

View Source

UserCustomQuotaResult(UserSelectorArg, uint?)

Initializes a new instance of the UserCustomQuotaResult class.

Declaration
public UserCustomQuotaResult(UserSelectorArg user, uint? quotaGb = null)
Parameters
Type Name Description
UserSelectorArg user

The user

uint? quotaGb

The quota gb

Properties

View Source

QuotaGb

Gets the quota gb of the user custom quota result

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

User

Gets the user of the user custom quota result

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