Show / Hide Table of Contents

Class About.StorageQuotaData

The user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes.

Inheritance
object
About.StorageQuotaData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class About.StorageQuotaData

Properties

Limit

The usage limit, if applicable. This will not be present if the user has unlimited storage. For users that are part of an organization with pooled storage, this is the limit for the organization, rather than the individual user.

Declaration
[JsonProperty("limit")]
public virtual long? Limit { get; set; }
Property Value
Type Description
long?

Usage

The total usage across all services. For users that are part of an organization with pooled storage, this is the usage across all services for the organization, rather than the individual user.

Declaration
[JsonProperty("usage")]
public virtual long? Usage { get; set; }
Property Value
Type Description
long?

UsageInDrive

The usage by all files in Google Drive.

Declaration
[JsonProperty("usageInDrive")]
public virtual long? UsageInDrive { get; set; }
Property Value
Type Description
long?

UsageInDriveTrash

The usage by trashed files in Google Drive.

Declaration
[JsonProperty("usageInDriveTrash")]
public virtual long? UsageInDriveTrash { get; set; }
Property Value
Type Description
long?
In this article
Back to top Generated by DocFX