appInstalled = $appInstalled; } /** * @return bool */ public function getAppInstalled() { return $this->appInstalled; } /** * @param bool */ public function setCanCreateDrives($canCreateDrives) { $this->canCreateDrives = $canCreateDrives; } /** * @return bool */ public function getCanCreateDrives() { return $this->canCreateDrives; } /** * @param bool */ public function setCanCreateTeamDrives($canCreateTeamDrives) { $this->canCreateTeamDrives = $canCreateTeamDrives; } /** * @return bool */ public function getCanCreateTeamDrives() { return $this->canCreateTeamDrives; } /** * @param AboutDriveThemes[] */ public function setDriveThemes($driveThemes) { $this->driveThemes = $driveThemes; } /** * @return AboutDriveThemes[] */ public function getDriveThemes() { return $this->driveThemes; } /** * @param string[] */ public function setExportFormats($exportFormats) { $this->exportFormats = $exportFormats; } /** * @return string[] */ public function getExportFormats() { return $this->exportFormats; } /** * @param string[] */ public function setFolderColorPalette($folderColorPalette) { $this->folderColorPalette = $folderColorPalette; } /** * @return string[] */ public function getFolderColorPalette() { return $this->folderColorPalette; } /** * @param string[] */ public function setImportFormats($importFormats) { $this->importFormats = $importFormats; } /** * @return string[] */ public function getImportFormats() { return $this->importFormats; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string[] */ public function setMaxImportSizes($maxImportSizes) { $this->maxImportSizes = $maxImportSizes; } /** * @return string[] */ public function getMaxImportSizes() { return $this->maxImportSizes; } /** * @param string */ public function setMaxUploadSize($maxUploadSize) { $this->maxUploadSize = $maxUploadSize; } /** * @return string */ public function getMaxUploadSize() { return $this->maxUploadSize; } /** * @param AboutStorageQuota */ public function setStorageQuota(AboutStorageQuota $storageQuota) { $this->storageQuota = $storageQuota; } /** * @return AboutStorageQuota */ public function getStorageQuota() { return $this->storageQuota; } /** * @param AboutTeamDriveThemes[] */ public function setTeamDriveThemes($teamDriveThemes) { $this->teamDriveThemes = $teamDriveThemes; } /** * @return AboutTeamDriveThemes[] */ public function getTeamDriveThemes() { return $this->teamDriveThemes; } /** * @param User */ public function setUser(User $user) { $this->user = $user; } /** * @return User */ public function getUser() { return $this->user; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(About::class, 'Google_Service_Drive_About');