NAME

Google::RestApi::DriveApi3::About - About information for Google Drive.

SYNOPSIS

my $about = $drive->about();

# Get all about info
my $info = $about->get();

# Get specific information
my $user = $about->user();
my $quota = $about->storage_quota();
my $exports = $about->export_formats();
my $imports = $about->import_formats();
my $max_size = $about->max_upload_size();

DESCRIPTION

Provides access to user and storage information for Google Drive.

METHODS

get(fields => $fields)

Gets about information. Default returns all fields.

user()

Returns user information (displayName, emailAddress, etc).

storage_quota()

Returns storage quota information (limit, usage, usageInDrive, etc).

export_formats()

Returns supported export formats for Google Docs types.

import_formats()

Returns supported import formats.

max_upload_size()

Returns the maximum file upload size in bytes.

app_installed()

Returns whether the app is installed for the user.

drive_api()

Returns the parent DriveApi3 object.

AUTHORS

  • Robin Murray mvsjes@cpan.org

COPYRIGHT

Copyright (c) 2019-2026 Robin Murray. All rights reserved.

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.