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

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

Upload project files

  • Property mode set to 100644
File size: 2.4 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 GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource extends \Google\Collection
21{
22 protected $collection_key = 'qaTagResults';
23 public $normalizedScore;
24 public $potentialScore;
25 protected $qaTagResultsType = GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult::class;
26 protected $qaTagResultsDataType = 'array';
27 public $score;
28 /**
29 * @var string
30 */
31 public $sourceType;
32
33 public function setNormalizedScore($normalizedScore)
34 {
35 $this->normalizedScore = $normalizedScore;
36 }
37 public function getNormalizedScore()
38 {
39 return $this->normalizedScore;
40 }
41 public function setPotentialScore($potentialScore)
42 {
43 $this->potentialScore = $potentialScore;
44 }
45 public function getPotentialScore()
46 {
47 return $this->potentialScore;
48 }
49 /**
50 * @param GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult[]
51 */
52 public function setQaTagResults($qaTagResults)
53 {
54 $this->qaTagResults = $qaTagResults;
55 }
56 /**
57 * @return GoogleCloudContactcenterinsightsV1QaScorecardResultQaTagResult[]
58 */
59 public function getQaTagResults()
60 {
61 return $this->qaTagResults;
62 }
63 public function setScore($score)
64 {
65 $this->score = $score;
66 }
67 public function getScore()
68 {
69 return $this->score;
70 }
71 /**
72 * @param string
73 */
74 public function setSourceType($sourceType)
75 {
76 $this->sourceType = $sourceType;
77 }
78 /**
79 * @return string
80 */
81 public function getSourceType()
82 {
83 return $this->sourceType;
84 }
85}
86
87// Adding a class alias for backwards compatibility with the previous class name.
88class_alias(GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QaScorecardResultScoreSource');
Note: See TracBrowser for help on using the repository browser.