* $firebaseappdistributionService = new Google\Service\FirebaseAppDistribution(...); * $apps = $firebaseappdistributionService->projects_apps; * */ class ProjectsApps extends \Google\Service\Resource { /** * Gets Android App Bundle (AAB) information for a Firebase app. * (apps.getAabInfo) * * @param string $name Required. The name of the `AabInfo` resource to retrieve. * Format: `projects/{project_number}/apps/{app_id}/aabInfo` * @param array $optParams Optional parameters. * @return GoogleFirebaseAppdistroV1AabInfo * @throws \Google\Service\Exception */ public function getAabInfo($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getAabInfo', [$params], GoogleFirebaseAppdistroV1AabInfo::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsApps::class, 'Google_Service_FirebaseAppDistribution_Resource_ProjectsApps');