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

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

Upload project files

  • Property mode set to 100644
File size: 2.7 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 GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $boolValue;
26 /**
27 * @var string
28 */
29 public $key;
30 /**
31 * @var bool
32 */
33 public $naValue;
34 public $normalizedScore;
35 public $numValue;
36 public $potentialScore;
37 public $score;
38 /**
39 * @var string
40 */
41 public $strValue;
42
43 /**
44 * @param bool
45 */
46 public function setBoolValue($boolValue)
47 {
48 $this->boolValue = $boolValue;
49 }
50 /**
51 * @return bool
52 */
53 public function getBoolValue()
54 {
55 return $this->boolValue;
56 }
57 /**
58 * @param string
59 */
60 public function setKey($key)
61 {
62 $this->key = $key;
63 }
64 /**
65 * @return string
66 */
67 public function getKey()
68 {
69 return $this->key;
70 }
71 /**
72 * @param bool
73 */
74 public function setNaValue($naValue)
75 {
76 $this->naValue = $naValue;
77 }
78 /**
79 * @return bool
80 */
81 public function getNaValue()
82 {
83 return $this->naValue;
84 }
85 public function setNormalizedScore($normalizedScore)
86 {
87 $this->normalizedScore = $normalizedScore;
88 }
89 public function getNormalizedScore()
90 {
91 return $this->normalizedScore;
92 }
93 public function setNumValue($numValue)
94 {
95 $this->numValue = $numValue;
96 }
97 public function getNumValue()
98 {
99 return $this->numValue;
100 }
101 public function setPotentialScore($potentialScore)
102 {
103 $this->potentialScore = $potentialScore;
104 }
105 public function getPotentialScore()
106 {
107 return $this->potentialScore;
108 }
109 public function setScore($score)
110 {
111 $this->score = $score;
112 }
113 public function getScore()
114 {
115 return $this->score;
116 }
117 /**
118 * @param string
119 */
120 public function setStrValue($strValue)
121 {
122 $this->strValue = $strValue;
123 }
124 /**
125 * @return string
126 */
127 public function getStrValue()
128 {
129 return $this->strValue;
130 }
131}
132
133// Adding a class alias for backwards compatibility with the previous class name.
134class_alias(GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue');
Note: See TracBrowser for help on using the repository browser.