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.
Inherited Members
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? |