source: vendor/google/apiclient-services/src/Contactcenterinsights/GoogleCloudContactcenterinsightsV1QaScorecardResult.php

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

Upload project files

  • Property mode set to 100644
File size: 4.3 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 GoogleCloudContactcenterinsightsV1QaScorecardResult extends \Google\Collection
21{
22 protected $collection_key = 'scoreSources';
23 /**
24 * @var string
25 */
26 public $agentId;
27 /**
28 * @var string
29 */
30 public $conversation;
31 /**
32 * @var string
33 */
34 public $createTime;
35 /**
36 * @var string
37 */
38 public $name;
39 public $normalizedScore;
40 public $potentialScore;
41 protected $qaAnswersType = GoogleCloudContactcenterinsightsV1QaAnswer::class;
42 protected $qaAnswersDataType = 'array';
43 /**
44 * @var string
45 */
46 public $qaScorecardRevision;
47 protected $qaTagResultsType = GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult::class;
48 protected $qaTagResultsDataType = 'array';
49 public $score;
50 protected $scoreSourcesType = GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource::class;
51 protected $scoreSourcesDataType = 'array';
52
53 /**
54 * @param string
55 */
56 public function setAgentId($agentId)
57 {
58 $this->agentId = $agentId;
59 }
60 /**
61 * @return string
62 */
63 public function getAgentId()
64 {
65 return $this->agentId;
66 }
67 /**
68 * @param string
69 */
70 public function setConversation($conversation)
71 {
72 $this->conversation = $conversation;
73 }
74 /**
75 * @return string
76 */
77 public function getConversation()
78 {
79 return $this->conversation;
80 }
81 /**
82 * @param string
83 */
84 public function setCreateTime($createTime)
85 {
86 $this->createTime = $createTime;
87 }
88 /**
89 * @return string
90 */
91 public function getCreateTime()
92 {
93 return $this->createTime;
94 }
95 /**
96 * @param string
97 */
98 public function setName($name)
99 {
100 $this->name = $name;
101 }
102 /**
103 * @return string
104 */
105 public function getName()
106 {
107 return $this->name;
108 }
109 public function setNormalizedScore($normalizedScore)
110 {
111 $this->normalizedScore = $normalizedScore;
112 }
113 public function getNormalizedScore()
114 {
115 return $this->normalizedScore;
116 }
117 public function setPotentialScore($potentialScore)
118 {
119 $this->potentialScore = $potentialScore;
120 }
121 public function getPotentialScore()
122 {
123 return $this->potentialScore;
124 }
125 /**
126 * @param GoogleCloudContactcenterinsightsV1QaAnswer[]
127 */
128 public function setQaAnswers($qaAnswers)
129 {
130 $this->qaAnswers = $qaAnswers;
131 }
132 /**
133 * @return GoogleCloudContactcenterinsightsV1QaAnswer[]
134 */
135 public function getQaAnswers()
136 {
137 return $this->qaAnswers;
138 }
139 /**
140 * @param string
141 */
142 public function setQaScorecardRevision($qaScorecardRevision)
143 {
144 $this->qaScorecardRevision = $qaScorecardRevision;
145 }
146 /**
147 * @return string
148 */
149 public function getQaScorecardRevision()
150 {
151 return $this->qaScorecardRevision;
152 }
153 /**
154 * @param GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult[]
155 */
156 public function setQaTagResults($qaTagResults)
157 {
158 $this->qaTagResults = $qaTagResults;
159 }
160 /**
161 * @return GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult[]
162 */
163 public function getQaTagResults()
164 {
165 return $this->qaTagResults;
166 }
167 public function setScore($score)
168 {
169 $this->score = $score;
170 }
171 public function getScore()
172 {
173 return $this->score;
174 }
175 /**
176 * @param GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource[]
177 */
178 public function setScoreSources($scoreSources)
179 {
180 $this->scoreSources = $scoreSources;
181 }
182 /**
183 * @return GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource[]
184 */
185 public function getScoreSources()
186 {
187 return $this->scoreSources;
188 }
189}
190
191// Adding a class alias for backwards compatibility with the previous class name.
192class_alias(GoogleCloudContactcenterinsightsV1QaScorecardResult::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QaScorecardResult');
Note: See TracBrowser for help on using the repository browser.