* $playdeveloperreportingService = new Google\Service\Playdeveloperreporting(...); * $crashrate = $playdeveloperreportingService->vitals_crashrate; * */ class VitalsCrashrate extends \Google\Service\Resource { /** * Describes the properties of the metric set. (crashrate.get) * * @param string $name Required. The resource name. Format: * apps/{app}/crashRateMetricSet * @param array $optParams Optional parameters. * @return GooglePlayDeveloperReportingV1beta1CrashRateMetricSet * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GooglePlayDeveloperReportingV1beta1CrashRateMetricSet::class); } /** * Queries the metrics in the metric set. (crashrate.query) * * @param string $name Required. The resource name. Format: * apps/{app}/crashRateMetricSet * @param GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetRequest $postBody * @param array $optParams Optional parameters. * @return GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetResponse * @throws \Google\Service\Exception */ public function query($name, GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('query', [$params], GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VitalsCrashrate::class, 'Google_Service_Playdeveloperreporting_Resource_VitalsCrashrate');