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

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

Upload project files

  • Property mode set to 100644
File size: 3.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 GoogleCloudContactcenterinsightsV1AnalysisRule extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $active;
26 public $analysisPercentage;
27 protected $annotatorSelectorType = GoogleCloudContactcenterinsightsV1AnnotatorSelector::class;
28 protected $annotatorSelectorDataType = '';
29 /**
30 * @var string
31 */
32 public $conversationFilter;
33 /**
34 * @var string
35 */
36 public $createTime;
37 /**
38 * @var string
39 */
40 public $displayName;
41 /**
42 * @var string
43 */
44 public $name;
45 /**
46 * @var string
47 */
48 public $updateTime;
49
50 /**
51 * @param bool
52 */
53 public function setActive($active)
54 {
55 $this->active = $active;
56 }
57 /**
58 * @return bool
59 */
60 public function getActive()
61 {
62 return $this->active;
63 }
64 public function setAnalysisPercentage($analysisPercentage)
65 {
66 $this->analysisPercentage = $analysisPercentage;
67 }
68 public function getAnalysisPercentage()
69 {
70 return $this->analysisPercentage;
71 }
72 /**
73 * @param GoogleCloudContactcenterinsightsV1AnnotatorSelector
74 */
75 public function setAnnotatorSelector(GoogleCloudContactcenterinsightsV1AnnotatorSelector $annotatorSelector)
76 {
77 $this->annotatorSelector = $annotatorSelector;
78 }
79 /**
80 * @return GoogleCloudContactcenterinsightsV1AnnotatorSelector
81 */
82 public function getAnnotatorSelector()
83 {
84 return $this->annotatorSelector;
85 }
86 /**
87 * @param string
88 */
89 public function setConversationFilter($conversationFilter)
90 {
91 $this->conversationFilter = $conversationFilter;
92 }
93 /**
94 * @return string
95 */
96 public function getConversationFilter()
97 {
98 return $this->conversationFilter;
99 }
100 /**
101 * @param string
102 */
103 public function setCreateTime($createTime)
104 {
105 $this->createTime = $createTime;
106 }
107 /**
108 * @return string
109 */
110 public function getCreateTime()
111 {
112 return $this->createTime;
113 }
114 /**
115 * @param string
116 */
117 public function setDisplayName($displayName)
118 {
119 $this->displayName = $displayName;
120 }
121 /**
122 * @return string
123 */
124 public function getDisplayName()
125 {
126 return $this->displayName;
127 }
128 /**
129 * @param string
130 */
131 public function setName($name)
132 {
133 $this->name = $name;
134 }
135 /**
136 * @return string
137 */
138 public function getName()
139 {
140 return $this->name;
141 }
142 /**
143 * @param string
144 */
145 public function setUpdateTime($updateTime)
146 {
147 $this->updateTime = $updateTime;
148 }
149 /**
150 * @return string
151 */
152 public function getUpdateTime()
153 {
154 return $this->updateTime;
155 }
156}
157
158// Adding a class alias for backwards compatibility with the previous class name.
159class_alias(GoogleCloudContactcenterinsightsV1AnalysisRule::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1AnalysisRule');
Note: See TracBrowser for help on using the repository browser.