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