* $dialogflowService = new Google\Service\Dialogflow(...); * $continuousTestResults = $dialogflowService->continuousTestResults; * */ class ProjectsLocationsAgentsEnvironmentsContinuousTestResults extends \Google\Service\Resource { /** * Fetches a list of continuous test results for a given environment. (continuou * sTestResults.listProjectsLocationsAgentsEnvironmentsContinuousTestResults) * * @param string $parent Required. The environment to list results for. Format: * `projects//locations//agents// environments/`. * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of items to return in a single * page. By default 100 and at most 1000. * @opt_param string pageToken The next_page_token value returned from a * previous list request. * @return GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse */ public function listProjectsLocationsAgentsEnvironmentsContinuousTestResults($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsAgentsEnvironmentsContinuousTestResults::class, 'Google_Service_Dialogflow_Resource_ProjectsLocationsAgentsEnvironmentsContinuousTestResults');