Class About
Information about the user, the user's Drive, and system capabilities.
public class About : IDirectResponseSchema
- Inheritance
-
About
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
About()
public About()
Properties
AppInstalled
Whether the user has installed the requesting app.
public virtual bool? AppInstalled { get; set; }
Property Value
- bool?
CanCreateDrives
Whether the user can create shared drives.
public virtual bool? CanCreateDrives { get; set; }
Property Value
- bool?
CanCreateTeamDrives
Deprecated - use canCreateDrives instead.
public virtual bool? CanCreateTeamDrives { get; set; }
Property Value
- bool?
DriveThemes
A list of themes that are supported for shared drives.
public virtual IList<About.DriveThemesData> DriveThemes { get; set; }
Property Value
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
ExportFormats
A map of source MIME type to possible targets for all supported exports.
public virtual IDictionary<string, IList<string>> ExportFormats { get; set; }
Property Value
FolderColorPalette
The currently supported folder colors as RGB hex strings.
public virtual IList<string> FolderColorPalette { get; set; }
Property Value
ImportFormats
A map of source MIME type to possible targets for all supported imports.
public virtual IDictionary<string, IList<string>> ImportFormats { get; set; }
Property Value
Kind
Identifies what kind of resource this is. Value: the fixed string "drive#about".
public virtual string Kind { get; set; }
Property Value
MaxImportSizes
A map of maximum import sizes by MIME type, in bytes.
public virtual IDictionary<string, long?> MaxImportSizes { get; set; }
Property Value
MaxUploadSize
The maximum upload size in bytes.
public virtual long? MaxUploadSize { get; set; }
Property Value
- long?
StorageQuota
The user's storage quota limits and usage. All fields are measured in bytes.
public virtual About.StorageQuotaData StorageQuota { get; set; }
Property Value
TeamDriveThemes
Deprecated - use driveThemes instead.
public virtual IList<About.TeamDriveThemesData> TeamDriveThemes { get; set; }
Property Value
User
The authenticated user.
public virtual User User { get; set; }