File manager - Edit - /var/www/payraty/hris/vendor/google/apiclient-services/src/Contactcenterinsights/Resource/ProjectsLocationsDatasetsConversations.php
Back
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Contactcenterinsights\Resource; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1BulkDeleteConversationsRequest; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1CalculateStatsRequest; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1CalculateStatsResponse; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1Conversation; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1IngestConversationsRequest; use Google\Service\Contactcenterinsights\GoogleCloudContactcenterinsightsV1ListConversationsResponse; use Google\Service\Contactcenterinsights\GoogleLongrunningOperation; use Google\Service\Contactcenterinsights\GoogleProtobufEmpty; /** * The "conversations" collection of methods. * Typical usage is: * <code> * $contactcenterinsightsService = new Google\Service\Contactcenterinsights(...); * $conversations = $contactcenterinsightsService->projects_locations_datasets_conversations; * </code> */ class ProjectsLocationsDatasetsConversations extends \Google\Service\Resource { /** * Analyzes multiple conversations in a single request. * (conversations.bulkAnalyze) * * @param string $parent Required. The parent resource to create analyses in. * @param GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function bulkAnalyze($parent, GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('bulkAnalyze', [$params], GoogleLongrunningOperation::class); } /** * Deletes multiple conversations in a single request. * (conversations.bulkDelete) * * @param string $parent Required. The parent resource to delete conversations * from. Format: projects/{project}/locations/{location} * @param GoogleCloudContactcenterinsightsV1BulkDeleteConversationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function bulkDelete($parent, GoogleCloudContactcenterinsightsV1BulkDeleteConversationsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('bulkDelete', [$params], GoogleLongrunningOperation::class); } /** * Gets conversation statistics. (conversations.calculateStats) * * @param string $location Required. The location of the conversations. * @param GoogleCloudContactcenterinsightsV1CalculateStatsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudContactcenterinsightsV1CalculateStatsResponse * @throws \Google\Service\Exception */ public function calculateStats($location, GoogleCloudContactcenterinsightsV1CalculateStatsRequest $postBody, $optParams = []) { $params = ['location' => $location, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('calculateStats', [$params], GoogleCloudContactcenterinsightsV1CalculateStatsResponse::class); } /** * Deletes a conversation. (conversations.delete) * * @param string $name Required. The name of the conversation to delete. * @param array $optParams Optional parameters. * * @opt_param bool force If set to true, all of this conversation's analyses * will also be deleted. Otherwise, the request will only succeed if the * conversation has no analyses. * @return GoogleProtobufEmpty * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleProtobufEmpty::class); } /** * Gets a conversation. (conversations.get) * * @param string $name Required. The name of the conversation to get. * @param array $optParams Optional parameters. * * @opt_param string view The level of details of the conversation. Default is * `FULL`. * @return GoogleCloudContactcenterinsightsV1Conversation * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudContactcenterinsightsV1Conversation::class); } /** * Imports conversations and processes them according to the user's * configuration. (conversations.ingest) * * @param string $parent Required. The parent resource for new conversations. * @param GoogleCloudContactcenterinsightsV1IngestConversationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function ingest($parent, GoogleCloudContactcenterinsightsV1IngestConversationsRequest $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('ingest', [$params], GoogleLongrunningOperation::class); } /** * Lists conversations. * (conversations.listProjectsLocationsDatasetsConversations) * * @param string $parent Required. The parent resource of the conversation. * @param array $optParams Optional parameters. * * @opt_param string filter A filter to reduce results to a specific subset. * Useful for querying conversations with specific properties. * @opt_param string orderBy Optional. The attribute by which to order * conversations in the response. If empty, conversations will be ordered by * descending creation time. Supported values are one of the following: * * create_time * customer_satisfaction_rating * duration * latest_analysis * * start_time * turn_count The default sort order is ascending. To specify * order, append `asc` or `desc` (`create_time desc`). For more details, see * [Google AIPs Ordering](https://google.aip.dev/132#ordering). * @opt_param int pageSize The maximum number of conversations to return in the * response. A valid page size ranges from 0 to 100,000 inclusive. If the page * size is zero or unspecified, a default page size of 100 will be chosen. Note * that a call might return fewer results than the requested page size. * @opt_param string pageToken The value returned by the last * `ListConversationsResponse`. This value indicates that this is a continuation * of a prior `ListConversations` call and that the system should return the * next page of data. * @opt_param string view The level of details of the conversation. Default is * `BASIC`. * @return GoogleCloudContactcenterinsightsV1ListConversationsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsDatasetsConversations($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudContactcenterinsightsV1ListConversationsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsDatasetsConversations::class, 'Google_Service_Contactcenterinsights_Resource_ProjectsLocationsDatasetsConversations');
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings