source: vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowCxV3Flow.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.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\Dialogflow;
19
20class GoogleCloudDialogflowCxV3Flow extends \Google\Collection
21{
22 protected $collection_key = 'transitionRoutes';
23 protected $advancedSettingsType = GoogleCloudDialogflowCxV3AdvancedSettings::class;
24 protected $advancedSettingsDataType = '';
25 /**
26 * @var string
27 */
28 public $description;
29 /**
30 * @var string
31 */
32 public $displayName;
33 protected $eventHandlersType = GoogleCloudDialogflowCxV3EventHandler::class;
34 protected $eventHandlersDataType = 'array';
35 protected $knowledgeConnectorSettingsType = GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::class;
36 protected $knowledgeConnectorSettingsDataType = '';
37 /**
38 * @var bool
39 */
40 public $locked;
41 protected $multiLanguageSettingsType = GoogleCloudDialogflowCxV3FlowMultiLanguageSettings::class;
42 protected $multiLanguageSettingsDataType = '';
43 /**
44 * @var string
45 */
46 public $name;
47 protected $nluSettingsType = GoogleCloudDialogflowCxV3NluSettings::class;
48 protected $nluSettingsDataType = '';
49 /**
50 * @var string[]
51 */
52 public $transitionRouteGroups;
53 protected $transitionRoutesType = GoogleCloudDialogflowCxV3TransitionRoute::class;
54 protected $transitionRoutesDataType = 'array';
55
56 /**
57 * @param GoogleCloudDialogflowCxV3AdvancedSettings
58 */
59 public function setAdvancedSettings(GoogleCloudDialogflowCxV3AdvancedSettings $advancedSettings)
60 {
61 $this->advancedSettings = $advancedSettings;
62 }
63 /**
64 * @return GoogleCloudDialogflowCxV3AdvancedSettings
65 */
66 public function getAdvancedSettings()
67 {
68 return $this->advancedSettings;
69 }
70 /**
71 * @param string
72 */
73 public function setDescription($description)
74 {
75 $this->description = $description;
76 }
77 /**
78 * @return string
79 */
80 public function getDescription()
81 {
82 return $this->description;
83 }
84 /**
85 * @param string
86 */
87 public function setDisplayName($displayName)
88 {
89 $this->displayName = $displayName;
90 }
91 /**
92 * @return string
93 */
94 public function getDisplayName()
95 {
96 return $this->displayName;
97 }
98 /**
99 * @param GoogleCloudDialogflowCxV3EventHandler[]
100 */
101 public function setEventHandlers($eventHandlers)
102 {
103 $this->eventHandlers = $eventHandlers;
104 }
105 /**
106 * @return GoogleCloudDialogflowCxV3EventHandler[]
107 */
108 public function getEventHandlers()
109 {
110 return $this->eventHandlers;
111 }
112 /**
113 * @param GoogleCloudDialogflowCxV3KnowledgeConnectorSettings
114 */
115 public function setKnowledgeConnectorSettings(GoogleCloudDialogflowCxV3KnowledgeConnectorSettings $knowledgeConnectorSettings)
116 {
117 $this->knowledgeConnectorSettings = $knowledgeConnectorSettings;
118 }
119 /**
120 * @return GoogleCloudDialogflowCxV3KnowledgeConnectorSettings
121 */
122 public function getKnowledgeConnectorSettings()
123 {
124 return $this->knowledgeConnectorSettings;
125 }
126 /**
127 * @param bool
128 */
129 public function setLocked($locked)
130 {
131 $this->locked = $locked;
132 }
133 /**
134 * @return bool
135 */
136 public function getLocked()
137 {
138 return $this->locked;
139 }
140 /**
141 * @param GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
142 */
143 public function setMultiLanguageSettings(GoogleCloudDialogflowCxV3FlowMultiLanguageSettings $multiLanguageSettings)
144 {
145 $this->multiLanguageSettings = $multiLanguageSettings;
146 }
147 /**
148 * @return GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
149 */
150 public function getMultiLanguageSettings()
151 {
152 return $this->multiLanguageSettings;
153 }
154 /**
155 * @param string
156 */
157 public function setName($name)
158 {
159 $this->name = $name;
160 }
161 /**
162 * @return string
163 */
164 public function getName()
165 {
166 return $this->name;
167 }
168 /**
169 * @param GoogleCloudDialogflowCxV3NluSettings
170 */
171 public function setNluSettings(GoogleCloudDialogflowCxV3NluSettings $nluSettings)
172 {
173 $this->nluSettings = $nluSettings;
174 }
175 /**
176 * @return GoogleCloudDialogflowCxV3NluSettings
177 */
178 public function getNluSettings()
179 {
180 return $this->nluSettings;
181 }
182 /**
183 * @param string[]
184 */
185 public function setTransitionRouteGroups($transitionRouteGroups)
186 {
187 $this->transitionRouteGroups = $transitionRouteGroups;
188 }
189 /**
190 * @return string[]
191 */
192 public function getTransitionRouteGroups()
193 {
194 return $this->transitionRouteGroups;
195 }
196 /**
197 * @param GoogleCloudDialogflowCxV3TransitionRoute[]
198 */
199 public function setTransitionRoutes($transitionRoutes)
200 {
201 $this->transitionRoutes = $transitionRoutes;
202 }
203 /**
204 * @return GoogleCloudDialogflowCxV3TransitionRoute[]
205 */
206 public function getTransitionRoutes()
207 {
208 return $this->transitionRoutes;
209 }
210}
211
212// Adding a class alias for backwards compatibility with the previous class name.
213class_alias(GoogleCloudDialogflowCxV3Flow::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3Flow');
Note: See TracBrowser for help on using the repository browser.