[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\Contactcenterinsights;
|
---|
| 19 |
|
---|
| 20 | class GoogleCloudContactcenterinsightsV1Conversation extends \Google\Collection
|
---|
| 21 | {
|
---|
| 22 | protected $collection_key = 'runtimeAnnotations';
|
---|
| 23 | /**
|
---|
| 24 | * @var string
|
---|
| 25 | */
|
---|
| 26 | public $agentId;
|
---|
| 27 | protected $callMetadataType = GoogleCloudContactcenterinsightsV1ConversationCallMetadata::class;
|
---|
| 28 | protected $callMetadataDataType = '';
|
---|
| 29 | /**
|
---|
| 30 | * @var string
|
---|
| 31 | */
|
---|
| 32 | public $createTime;
|
---|
| 33 | protected $dataSourceType = GoogleCloudContactcenterinsightsV1ConversationDataSource::class;
|
---|
| 34 | protected $dataSourceDataType = '';
|
---|
| 35 | protected $dialogflowIntentsType = GoogleCloudContactcenterinsightsV1DialogflowIntent::class;
|
---|
| 36 | protected $dialogflowIntentsDataType = 'map';
|
---|
| 37 | /**
|
---|
| 38 | * @var string
|
---|
| 39 | */
|
---|
| 40 | public $duration;
|
---|
| 41 | /**
|
---|
| 42 | * @var string
|
---|
| 43 | */
|
---|
| 44 | public $expireTime;
|
---|
| 45 | /**
|
---|
| 46 | * @var string[]
|
---|
| 47 | */
|
---|
| 48 | public $labels;
|
---|
| 49 | /**
|
---|
| 50 | * @var string
|
---|
| 51 | */
|
---|
| 52 | public $languageCode;
|
---|
| 53 | protected $latestAnalysisType = GoogleCloudContactcenterinsightsV1Analysis::class;
|
---|
| 54 | protected $latestAnalysisDataType = '';
|
---|
| 55 | protected $latestSummaryType = GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData::class;
|
---|
| 56 | protected $latestSummaryDataType = '';
|
---|
| 57 | /**
|
---|
| 58 | * @var string
|
---|
| 59 | */
|
---|
| 60 | public $medium;
|
---|
| 61 | /**
|
---|
| 62 | * @var string
|
---|
| 63 | */
|
---|
| 64 | public $metadataJson;
|
---|
| 65 | /**
|
---|
| 66 | * @var string
|
---|
| 67 | */
|
---|
| 68 | public $name;
|
---|
| 69 | /**
|
---|
| 70 | * @var string
|
---|
| 71 | */
|
---|
| 72 | public $obfuscatedUserId;
|
---|
| 73 | protected $qualityMetadataType = GoogleCloudContactcenterinsightsV1ConversationQualityMetadata::class;
|
---|
| 74 | protected $qualityMetadataDataType = '';
|
---|
| 75 | protected $runtimeAnnotationsType = GoogleCloudContactcenterinsightsV1RuntimeAnnotation::class;
|
---|
| 76 | protected $runtimeAnnotationsDataType = 'array';
|
---|
| 77 | /**
|
---|
| 78 | * @var string
|
---|
| 79 | */
|
---|
| 80 | public $startTime;
|
---|
| 81 | protected $transcriptType = GoogleCloudContactcenterinsightsV1ConversationTranscript::class;
|
---|
| 82 | protected $transcriptDataType = '';
|
---|
| 83 | /**
|
---|
| 84 | * @var string
|
---|
| 85 | */
|
---|
| 86 | public $ttl;
|
---|
| 87 | /**
|
---|
| 88 | * @var int
|
---|
| 89 | */
|
---|
| 90 | public $turnCount;
|
---|
| 91 | /**
|
---|
| 92 | * @var string
|
---|
| 93 | */
|
---|
| 94 | public $updateTime;
|
---|
| 95 |
|
---|
| 96 | /**
|
---|
| 97 | * @param string
|
---|
| 98 | */
|
---|
| 99 | public function setAgentId($agentId)
|
---|
| 100 | {
|
---|
| 101 | $this->agentId = $agentId;
|
---|
| 102 | }
|
---|
| 103 | /**
|
---|
| 104 | * @return string
|
---|
| 105 | */
|
---|
| 106 | public function getAgentId()
|
---|
| 107 | {
|
---|
| 108 | return $this->agentId;
|
---|
| 109 | }
|
---|
| 110 | /**
|
---|
| 111 | * @param GoogleCloudContactcenterinsightsV1ConversationCallMetadata
|
---|
| 112 | */
|
---|
| 113 | public function setCallMetadata(GoogleCloudContactcenterinsightsV1ConversationCallMetadata $callMetadata)
|
---|
| 114 | {
|
---|
| 115 | $this->callMetadata = $callMetadata;
|
---|
| 116 | }
|
---|
| 117 | /**
|
---|
| 118 | * @return GoogleCloudContactcenterinsightsV1ConversationCallMetadata
|
---|
| 119 | */
|
---|
| 120 | public function getCallMetadata()
|
---|
| 121 | {
|
---|
| 122 | return $this->callMetadata;
|
---|
| 123 | }
|
---|
| 124 | /**
|
---|
| 125 | * @param string
|
---|
| 126 | */
|
---|
| 127 | public function setCreateTime($createTime)
|
---|
| 128 | {
|
---|
| 129 | $this->createTime = $createTime;
|
---|
| 130 | }
|
---|
| 131 | /**
|
---|
| 132 | * @return string
|
---|
| 133 | */
|
---|
| 134 | public function getCreateTime()
|
---|
| 135 | {
|
---|
| 136 | return $this->createTime;
|
---|
| 137 | }
|
---|
| 138 | /**
|
---|
| 139 | * @param GoogleCloudContactcenterinsightsV1ConversationDataSource
|
---|
| 140 | */
|
---|
| 141 | public function setDataSource(GoogleCloudContactcenterinsightsV1ConversationDataSource $dataSource)
|
---|
| 142 | {
|
---|
| 143 | $this->dataSource = $dataSource;
|
---|
| 144 | }
|
---|
| 145 | /**
|
---|
| 146 | * @return GoogleCloudContactcenterinsightsV1ConversationDataSource
|
---|
| 147 | */
|
---|
| 148 | public function getDataSource()
|
---|
| 149 | {
|
---|
| 150 | return $this->dataSource;
|
---|
| 151 | }
|
---|
| 152 | /**
|
---|
| 153 | * @param GoogleCloudContactcenterinsightsV1DialogflowIntent[]
|
---|
| 154 | */
|
---|
| 155 | public function setDialogflowIntents($dialogflowIntents)
|
---|
| 156 | {
|
---|
| 157 | $this->dialogflowIntents = $dialogflowIntents;
|
---|
| 158 | }
|
---|
| 159 | /**
|
---|
| 160 | * @return GoogleCloudContactcenterinsightsV1DialogflowIntent[]
|
---|
| 161 | */
|
---|
| 162 | public function getDialogflowIntents()
|
---|
| 163 | {
|
---|
| 164 | return $this->dialogflowIntents;
|
---|
| 165 | }
|
---|
| 166 | /**
|
---|
| 167 | * @param string
|
---|
| 168 | */
|
---|
| 169 | public function setDuration($duration)
|
---|
| 170 | {
|
---|
| 171 | $this->duration = $duration;
|
---|
| 172 | }
|
---|
| 173 | /**
|
---|
| 174 | * @return string
|
---|
| 175 | */
|
---|
| 176 | public function getDuration()
|
---|
| 177 | {
|
---|
| 178 | return $this->duration;
|
---|
| 179 | }
|
---|
| 180 | /**
|
---|
| 181 | * @param string
|
---|
| 182 | */
|
---|
| 183 | public function setExpireTime($expireTime)
|
---|
| 184 | {
|
---|
| 185 | $this->expireTime = $expireTime;
|
---|
| 186 | }
|
---|
| 187 | /**
|
---|
| 188 | * @return string
|
---|
| 189 | */
|
---|
| 190 | public function getExpireTime()
|
---|
| 191 | {
|
---|
| 192 | return $this->expireTime;
|
---|
| 193 | }
|
---|
| 194 | /**
|
---|
| 195 | * @param string[]
|
---|
| 196 | */
|
---|
| 197 | public function setLabels($labels)
|
---|
| 198 | {
|
---|
| 199 | $this->labels = $labels;
|
---|
| 200 | }
|
---|
| 201 | /**
|
---|
| 202 | * @return string[]
|
---|
| 203 | */
|
---|
| 204 | public function getLabels()
|
---|
| 205 | {
|
---|
| 206 | return $this->labels;
|
---|
| 207 | }
|
---|
| 208 | /**
|
---|
| 209 | * @param string
|
---|
| 210 | */
|
---|
| 211 | public function setLanguageCode($languageCode)
|
---|
| 212 | {
|
---|
| 213 | $this->languageCode = $languageCode;
|
---|
| 214 | }
|
---|
| 215 | /**
|
---|
| 216 | * @return string
|
---|
| 217 | */
|
---|
| 218 | public function getLanguageCode()
|
---|
| 219 | {
|
---|
| 220 | return $this->languageCode;
|
---|
| 221 | }
|
---|
| 222 | /**
|
---|
| 223 | * @param GoogleCloudContactcenterinsightsV1Analysis
|
---|
| 224 | */
|
---|
| 225 | public function setLatestAnalysis(GoogleCloudContactcenterinsightsV1Analysis $latestAnalysis)
|
---|
| 226 | {
|
---|
| 227 | $this->latestAnalysis = $latestAnalysis;
|
---|
| 228 | }
|
---|
| 229 | /**
|
---|
| 230 | * @return GoogleCloudContactcenterinsightsV1Analysis
|
---|
| 231 | */
|
---|
| 232 | public function getLatestAnalysis()
|
---|
| 233 | {
|
---|
| 234 | return $this->latestAnalysis;
|
---|
| 235 | }
|
---|
| 236 | /**
|
---|
| 237 | * @param GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
|
---|
| 238 | */
|
---|
| 239 | public function setLatestSummary(GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData $latestSummary)
|
---|
| 240 | {
|
---|
| 241 | $this->latestSummary = $latestSummary;
|
---|
| 242 | }
|
---|
| 243 | /**
|
---|
| 244 | * @return GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
|
---|
| 245 | */
|
---|
| 246 | public function getLatestSummary()
|
---|
| 247 | {
|
---|
| 248 | return $this->latestSummary;
|
---|
| 249 | }
|
---|
| 250 | /**
|
---|
| 251 | * @param string
|
---|
| 252 | */
|
---|
| 253 | public function setMedium($medium)
|
---|
| 254 | {
|
---|
| 255 | $this->medium = $medium;
|
---|
| 256 | }
|
---|
| 257 | /**
|
---|
| 258 | * @return string
|
---|
| 259 | */
|
---|
| 260 | public function getMedium()
|
---|
| 261 | {
|
---|
| 262 | return $this->medium;
|
---|
| 263 | }
|
---|
| 264 | /**
|
---|
| 265 | * @param string
|
---|
| 266 | */
|
---|
| 267 | public function setMetadataJson($metadataJson)
|
---|
| 268 | {
|
---|
| 269 | $this->metadataJson = $metadataJson;
|
---|
| 270 | }
|
---|
| 271 | /**
|
---|
| 272 | * @return string
|
---|
| 273 | */
|
---|
| 274 | public function getMetadataJson()
|
---|
| 275 | {
|
---|
| 276 | return $this->metadataJson;
|
---|
| 277 | }
|
---|
| 278 | /**
|
---|
| 279 | * @param string
|
---|
| 280 | */
|
---|
| 281 | public function setName($name)
|
---|
| 282 | {
|
---|
| 283 | $this->name = $name;
|
---|
| 284 | }
|
---|
| 285 | /**
|
---|
| 286 | * @return string
|
---|
| 287 | */
|
---|
| 288 | public function getName()
|
---|
| 289 | {
|
---|
| 290 | return $this->name;
|
---|
| 291 | }
|
---|
| 292 | /**
|
---|
| 293 | * @param string
|
---|
| 294 | */
|
---|
| 295 | public function setObfuscatedUserId($obfuscatedUserId)
|
---|
| 296 | {
|
---|
| 297 | $this->obfuscatedUserId = $obfuscatedUserId;
|
---|
| 298 | }
|
---|
| 299 | /**
|
---|
| 300 | * @return string
|
---|
| 301 | */
|
---|
| 302 | public function getObfuscatedUserId()
|
---|
| 303 | {
|
---|
| 304 | return $this->obfuscatedUserId;
|
---|
| 305 | }
|
---|
| 306 | /**
|
---|
| 307 | * @param GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
|
---|
| 308 | */
|
---|
| 309 | public function setQualityMetadata(GoogleCloudContactcenterinsightsV1ConversationQualityMetadata $qualityMetadata)
|
---|
| 310 | {
|
---|
| 311 | $this->qualityMetadata = $qualityMetadata;
|
---|
| 312 | }
|
---|
| 313 | /**
|
---|
| 314 | * @return GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
|
---|
| 315 | */
|
---|
| 316 | public function getQualityMetadata()
|
---|
| 317 | {
|
---|
| 318 | return $this->qualityMetadata;
|
---|
| 319 | }
|
---|
| 320 | /**
|
---|
| 321 | * @param GoogleCloudContactcenterinsightsV1RuntimeAnnotation[]
|
---|
| 322 | */
|
---|
| 323 | public function setRuntimeAnnotations($runtimeAnnotations)
|
---|
| 324 | {
|
---|
| 325 | $this->runtimeAnnotations = $runtimeAnnotations;
|
---|
| 326 | }
|
---|
| 327 | /**
|
---|
| 328 | * @return GoogleCloudContactcenterinsightsV1RuntimeAnnotation[]
|
---|
| 329 | */
|
---|
| 330 | public function getRuntimeAnnotations()
|
---|
| 331 | {
|
---|
| 332 | return $this->runtimeAnnotations;
|
---|
| 333 | }
|
---|
| 334 | /**
|
---|
| 335 | * @param string
|
---|
| 336 | */
|
---|
| 337 | public function setStartTime($startTime)
|
---|
| 338 | {
|
---|
| 339 | $this->startTime = $startTime;
|
---|
| 340 | }
|
---|
| 341 | /**
|
---|
| 342 | * @return string
|
---|
| 343 | */
|
---|
| 344 | public function getStartTime()
|
---|
| 345 | {
|
---|
| 346 | return $this->startTime;
|
---|
| 347 | }
|
---|
| 348 | /**
|
---|
| 349 | * @param GoogleCloudContactcenterinsightsV1ConversationTranscript
|
---|
| 350 | */
|
---|
| 351 | public function setTranscript(GoogleCloudContactcenterinsightsV1ConversationTranscript $transcript)
|
---|
| 352 | {
|
---|
| 353 | $this->transcript = $transcript;
|
---|
| 354 | }
|
---|
| 355 | /**
|
---|
| 356 | * @return GoogleCloudContactcenterinsightsV1ConversationTranscript
|
---|
| 357 | */
|
---|
| 358 | public function getTranscript()
|
---|
| 359 | {
|
---|
| 360 | return $this->transcript;
|
---|
| 361 | }
|
---|
| 362 | /**
|
---|
| 363 | * @param string
|
---|
| 364 | */
|
---|
| 365 | public function setTtl($ttl)
|
---|
| 366 | {
|
---|
| 367 | $this->ttl = $ttl;
|
---|
| 368 | }
|
---|
| 369 | /**
|
---|
| 370 | * @return string
|
---|
| 371 | */
|
---|
| 372 | public function getTtl()
|
---|
| 373 | {
|
---|
| 374 | return $this->ttl;
|
---|
| 375 | }
|
---|
| 376 | /**
|
---|
| 377 | * @param int
|
---|
| 378 | */
|
---|
| 379 | public function setTurnCount($turnCount)
|
---|
| 380 | {
|
---|
| 381 | $this->turnCount = $turnCount;
|
---|
| 382 | }
|
---|
| 383 | /**
|
---|
| 384 | * @return int
|
---|
| 385 | */
|
---|
| 386 | public function getTurnCount()
|
---|
| 387 | {
|
---|
| 388 | return $this->turnCount;
|
---|
| 389 | }
|
---|
| 390 | /**
|
---|
| 391 | * @param string
|
---|
| 392 | */
|
---|
| 393 | public function setUpdateTime($updateTime)
|
---|
| 394 | {
|
---|
| 395 | $this->updateTime = $updateTime;
|
---|
| 396 | }
|
---|
| 397 | /**
|
---|
| 398 | * @return string
|
---|
| 399 | */
|
---|
| 400 | public function getUpdateTime()
|
---|
| 401 | {
|
---|
| 402 | return $this->updateTime;
|
---|
| 403 | }
|
---|
| 404 | }
|
---|
| 405 |
|
---|
| 406 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 407 | class_alias(GoogleCloudContactcenterinsightsV1Conversation::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1Conversation');
|
---|