* $testingService = new Google\Service\Testing(...); * $applicationDetailService = $testingService->applicationDetailService; * */ class ApplicationDetailService extends \Google\Service\Resource { /** * Gets the details of an Android application APK. * (applicationDetailService.getApkDetails) * * @param FileReference $postBody * @param array $optParams Optional parameters. * * @opt_param string bundleLocation.gcsPath A path to a file in Google Cloud * Storage. Example: gs://build-app-1414623860166/app%40debug-unaligned.apk * These paths are expected to be url encoded (percent encoding) * @return GetApkDetailsResponse * @throws \Google\Service\Exception */ public function getApkDetails(FileReference $postBody, $optParams = []) { $params = ['postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('getApkDetails', [$params], GetApkDetailsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ApplicationDetailService::class, 'Google_Service_Testing_Resource_ApplicationDetailService');