source: vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowV3alpha1TurnSignals.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[f9c482b]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\Dialogflow;
19
20class GoogleCloudDialogflowV3alpha1TurnSignals extends \Google\Collection
21{
22 protected $collection_key = 'webhookStatuses';
23 /**
24 * @var bool
25 */
26 public $agentEscalated;
27 /**
28 * @var bool
29 */
30 public $dtmfUsed;
31 /**
32 * @var string[]
33 */
34 public $failureReasons;
35 /**
36 * @var bool
37 */
38 public $noMatch;
39 /**
40 * @var bool
41 */
42 public $noUserInput;
43 /**
44 * @var bool
45 */
46 public $reachedEndPage;
47 /**
48 * @var float
49 */
50 public $sentimentMagnitude;
51 /**
52 * @var float
53 */
54 public $sentimentScore;
55 /**
56 * @var bool
57 */
58 public $triggeredAbandonmentEvent;
59 /**
60 * @var bool
61 */
62 public $userEscalated;
63 /**
64 * @var string[]
65 */
66 public $webhookStatuses;
67
68 /**
69 * @param bool
70 */
71 public function setAgentEscalated($agentEscalated)
72 {
73 $this->agentEscalated = $agentEscalated;
74 }
75 /**
76 * @return bool
77 */
78 public function getAgentEscalated()
79 {
80 return $this->agentEscalated;
81 }
82 /**
83 * @param bool
84 */
85 public function setDtmfUsed($dtmfUsed)
86 {
87 $this->dtmfUsed = $dtmfUsed;
88 }
89 /**
90 * @return bool
91 */
92 public function getDtmfUsed()
93 {
94 return $this->dtmfUsed;
95 }
96 /**
97 * @param string[]
98 */
99 public function setFailureReasons($failureReasons)
100 {
101 $this->failureReasons = $failureReasons;
102 }
103 /**
104 * @return string[]
105 */
106 public function getFailureReasons()
107 {
108 return $this->failureReasons;
109 }
110 /**
111 * @param bool
112 */
113 public function setNoMatch($noMatch)
114 {
115 $this->noMatch = $noMatch;
116 }
117 /**
118 * @return bool
119 */
120 public function getNoMatch()
121 {
122 return $this->noMatch;
123 }
124 /**
125 * @param bool
126 */
127 public function setNoUserInput($noUserInput)
128 {
129 $this->noUserInput = $noUserInput;
130 }
131 /**
132 * @return bool
133 */
134 public function getNoUserInput()
135 {
136 return $this->noUserInput;
137 }
138 /**
139 * @param bool
140 */
141 public function setReachedEndPage($reachedEndPage)
142 {
143 $this->reachedEndPage = $reachedEndPage;
144 }
145 /**
146 * @return bool
147 */
148 public function getReachedEndPage()
149 {
150 return $this->reachedEndPage;
151 }
152 /**
153 * @param float
154 */
155 public function setSentimentMagnitude($sentimentMagnitude)
156 {
157 $this->sentimentMagnitude = $sentimentMagnitude;
158 }
159 /**
160 * @return float
161 */
162 public function getSentimentMagnitude()
163 {
164 return $this->sentimentMagnitude;
165 }
166 /**
167 * @param float
168 */
169 public function setSentimentScore($sentimentScore)
170 {
171 $this->sentimentScore = $sentimentScore;
172 }
173 /**
174 * @return float
175 */
176 public function getSentimentScore()
177 {
178 return $this->sentimentScore;
179 }
180 /**
181 * @param bool
182 */
183 public function setTriggeredAbandonmentEvent($triggeredAbandonmentEvent)
184 {
185 $this->triggeredAbandonmentEvent = $triggeredAbandonmentEvent;
186 }
187 /**
188 * @return bool
189 */
190 public function getTriggeredAbandonmentEvent()
191 {
192 return $this->triggeredAbandonmentEvent;
193 }
194 /**
195 * @param bool
196 */
197 public function setUserEscalated($userEscalated)
198 {
199 $this->userEscalated = $userEscalated;
200 }
201 /**
202 * @return bool
203 */
204 public function getUserEscalated()
205 {
206 return $this->userEscalated;
207 }
208 /**
209 * @param string[]
210 */
211 public function setWebhookStatuses($webhookStatuses)
212 {
213 $this->webhookStatuses = $webhookStatuses;
214 }
215 /**
216 * @return string[]
217 */
218 public function getWebhookStatuses()
219 {
220 return $this->webhookStatuses;
221 }
222}
223
224// Adding a class alias for backwards compatibility with the previous class name.
225class_alias(GoogleCloudDialogflowV3alpha1TurnSignals::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowV3alpha1TurnSignals');
Note: See TracBrowser for help on using the repository browser.