Show / Hide Table of Contents

Class About.StorageQuotaData

The user's storage quota limits and usage. 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.

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

Usage

The total usage across all services.

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