source: vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowCxV3QueryParameters.php

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

Upload project files

  • Property mode set to 100644
File size: 5.8 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\Dialogflow;
19
20class GoogleCloudDialogflowCxV3QueryParameters extends \Google\Collection
21{
22 protected $collection_key = 'sessionEntityTypes';
23 /**
24 * @var bool
25 */
26 public $analyzeQueryTextSentiment;
27 /**
28 * @var string
29 */
30 public $channel;
31 /**
32 * @var string
33 */
34 public $currentPage;
35 /**
36 * @var bool
37 */
38 public $disableWebhook;
39 /**
40 * @var array[]
41 */
42 public $endUserMetadata;
43 /**
44 * @var string[]
45 */
46 public $flowVersions;
47 protected $geoLocationType = GoogleTypeLatLng::class;
48 protected $geoLocationDataType = '';
49 /**
50 * @var array[]
51 */
52 public $parameters;
53 /**
54 * @var array[]
55 */
56 public $payload;
57 /**
58 * @var bool
59 */
60 public $populateDataStoreConnectionSignals;
61 protected $searchConfigType = GoogleCloudDialogflowCxV3SearchConfig::class;
62 protected $searchConfigDataType = '';
63 protected $sessionEntityTypesType = GoogleCloudDialogflowCxV3SessionEntityType::class;
64 protected $sessionEntityTypesDataType = 'array';
65 /**
66 * @var string
67 */
68 public $sessionTtl;
69 /**
70 * @var string
71 */
72 public $timeZone;
73 /**
74 * @var string[]
75 */
76 public $webhookHeaders;
77
78 /**
79 * @param bool
80 */
81 public function setAnalyzeQueryTextSentiment($analyzeQueryTextSentiment)
82 {
83 $this->analyzeQueryTextSentiment = $analyzeQueryTextSentiment;
84 }
85 /**
86 * @return bool
87 */
88 public function getAnalyzeQueryTextSentiment()
89 {
90 return $this->analyzeQueryTextSentiment;
91 }
92 /**
93 * @param string
94 */
95 public function setChannel($channel)
96 {
97 $this->channel = $channel;
98 }
99 /**
100 * @return string
101 */
102 public function getChannel()
103 {
104 return $this->channel;
105 }
106 /**
107 * @param string
108 */
109 public function setCurrentPage($currentPage)
110 {
111 $this->currentPage = $currentPage;
112 }
113 /**
114 * @return string
115 */
116 public function getCurrentPage()
117 {
118 return $this->currentPage;
119 }
120 /**
121 * @param bool
122 */
123 public function setDisableWebhook($disableWebhook)
124 {
125 $this->disableWebhook = $disableWebhook;
126 }
127 /**
128 * @return bool
129 */
130 public function getDisableWebhook()
131 {
132 return $this->disableWebhook;
133 }
134 /**
135 * @param array[]
136 */
137 public function setEndUserMetadata($endUserMetadata)
138 {
139 $this->endUserMetadata = $endUserMetadata;
140 }
141 /**
142 * @return array[]
143 */
144 public function getEndUserMetadata()
145 {
146 return $this->endUserMetadata;
147 }
148 /**
149 * @param string[]
150 */
151 public function setFlowVersions($flowVersions)
152 {
153 $this->flowVersions = $flowVersions;
154 }
155 /**
156 * @return string[]
157 */
158 public function getFlowVersions()
159 {
160 return $this->flowVersions;
161 }
162 /**
163 * @param GoogleTypeLatLng
164 */
165 public function setGeoLocation(GoogleTypeLatLng $geoLocation)
166 {
167 $this->geoLocation = $geoLocation;
168 }
169 /**
170 * @return GoogleTypeLatLng
171 */
172 public function getGeoLocation()
173 {
174 return $this->geoLocation;
175 }
176 /**
177 * @param array[]
178 */
179 public function setParameters($parameters)
180 {
181 $this->parameters = $parameters;
182 }
183 /**
184 * @return array[]
185 */
186 public function getParameters()
187 {
188 return $this->parameters;
189 }
190 /**
191 * @param array[]
192 */
193 public function setPayload($payload)
194 {
195 $this->payload = $payload;
196 }
197 /**
198 * @return array[]
199 */
200 public function getPayload()
201 {
202 return $this->payload;
203 }
204 /**
205 * @param bool
206 */
207 public function setPopulateDataStoreConnectionSignals($populateDataStoreConnectionSignals)
208 {
209 $this->populateDataStoreConnectionSignals = $populateDataStoreConnectionSignals;
210 }
211 /**
212 * @return bool
213 */
214 public function getPopulateDataStoreConnectionSignals()
215 {
216 return $this->populateDataStoreConnectionSignals;
217 }
218 /**
219 * @param GoogleCloudDialogflowCxV3SearchConfig
220 */
221 public function setSearchConfig(GoogleCloudDialogflowCxV3SearchConfig $searchConfig)
222 {
223 $this->searchConfig = $searchConfig;
224 }
225 /**
226 * @return GoogleCloudDialogflowCxV3SearchConfig
227 */
228 public function getSearchConfig()
229 {
230 return $this->searchConfig;
231 }
232 /**
233 * @param GoogleCloudDialogflowCxV3SessionEntityType[]
234 */
235 public function setSessionEntityTypes($sessionEntityTypes)
236 {
237 $this->sessionEntityTypes = $sessionEntityTypes;
238 }
239 /**
240 * @return GoogleCloudDialogflowCxV3SessionEntityType[]
241 */
242 public function getSessionEntityTypes()
243 {
244 return $this->sessionEntityTypes;
245 }
246 /**
247 * @param string
248 */
249 public function setSessionTtl($sessionTtl)
250 {
251 $this->sessionTtl = $sessionTtl;
252 }
253 /**
254 * @return string
255 */
256 public function getSessionTtl()
257 {
258 return $this->sessionTtl;
259 }
260 /**
261 * @param string
262 */
263 public function setTimeZone($timeZone)
264 {
265 $this->timeZone = $timeZone;
266 }
267 /**
268 * @return string
269 */
270 public function getTimeZone()
271 {
272 return $this->timeZone;
273 }
274 /**
275 * @param string[]
276 */
277 public function setWebhookHeaders($webhookHeaders)
278 {
279 $this->webhookHeaders = $webhookHeaders;
280 }
281 /**
282 * @return string[]
283 */
284 public function getWebhookHeaders()
285 {
286 return $this->webhookHeaders;
287 }
288}
289
290// Adding a class alias for backwards compatibility with the previous class name.
291class_alias(GoogleCloudDialogflowCxV3QueryParameters::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3QueryParameters');
Note: See TracBrowser for help on using the repository browser.