Show / Hide Table of Contents

Class About.StorageQuotaData

The user's storage quota limits and usage. All fields are measured in bytes.

Inheritance
System.Object
About.StorageQuotaData
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: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class 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
System.Nullable<System.Int64>

Usage

The total usage across all services.

Declaration
[JsonProperty("usage")]
public virtual long? Usage { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

UsageInDrive

The usage by all files in Google Drive.

Declaration
[JsonProperty("usageInDrive")]
public virtual long? UsageInDrive { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

UsageInDriveTrash

The usage by trashed files in Google Drive.

Declaration
[JsonProperty("usageInDriveTrash")]
public virtual long? UsageInDriveTrash { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
Back to top