source: vendor/google/apiclient-services/src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1AgentCoachingSuggestion.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Contactcenterinsights;
19
20class GoogleCloudContactcenterinsightsV1AgentCoachingSuggestion extends \Google\Collection
21{
22 protected $collection_key = 'sampleResponses';
23 protected $agentActionSuggestionsType = GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentActionSuggestion::class;
24 protected $agentActionSuggestionsDataType = 'array';
25 protected $applicableInstructionsType = GoogleCloudContactcenterinsightsV1AgentCoachingInstruction::class;
26 protected $applicableInstructionsDataType = 'array';
27 protected $sampleResponsesType = GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionSampleResponse::class;
28 protected $sampleResponsesDataType = 'array';
29 protected $suggestionEvalType = GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionEval::class;
30 protected $suggestionEvalDataType = '';
31 protected $suggestionReasoningType = GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionReasoning::class;
32 protected $suggestionReasoningDataType = '';
33
34 /**
35 * @param GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentActionSuggestion[]
36 */
37 public function setAgentActionSuggestions($agentActionSuggestions)
38 {
39 $this->agentActionSuggestions = $agentActionSuggestions;
40 }
41 /**
42 * @return GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentActionSuggestion[]
43 */
44 public function getAgentActionSuggestions()
45 {
46 return $this->agentActionSuggestions;
47 }
48 /**
49 * @param GoogleCloudContactcenterinsightsV1AgentCoachingInstruction[]
50 */
51 public function setApplicableInstructions($applicableInstructions)
52 {
53 $this->applicableInstructions = $applicableInstructions;
54 }
55 /**
56 * @return GoogleCloudContactcenterinsightsV1AgentCoachingInstruction[]
57 */
58 public function getApplicableInstructions()
59 {
60 return $this->applicableInstructions;
61 }
62 /**
63 * @param GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionSampleResponse[]
64 */
65 public function setSampleResponses($sampleResponses)
66 {
67 $this->sampleResponses = $sampleResponses;
68 }
69 /**
70 * @return GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionSampleResponse[]
71 */
72 public function getSampleResponses()
73 {
74 return $this->sampleResponses;
75 }
76 /**
77 * @param GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionEval
78 */
79 public function setSuggestionEval(GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionEval $suggestionEval)
80 {
81 $this->suggestionEval = $suggestionEval;
82 }
83 /**
84 * @return GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionEval
85 */
86 public function getSuggestionEval()
87 {
88 return $this->suggestionEval;
89 }
90 /**
91 * @param GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionReasoning
92 */
93 public function setSuggestionReasoning(GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionReasoning $suggestionReasoning)
94 {
95 $this->suggestionReasoning = $suggestionReasoning;
96 }
97 /**
98 * @return GoogleCloudContactcenterinsightsV1AgentCoachingSuggestionAgentCoachingSuggestionReasoning
99 */
100 public function getSuggestionReasoning()
101 {
102 return $this->suggestionReasoning;
103 }
104}
105
106// Adding a class alias for backwards compatibility with the previous class name.
107class_alias(GoogleCloudContactcenterinsightsV1AgentCoachingSuggestion::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1AgentCoachingSuggestion');
Note: See TracBrowser for help on using the repository browser.