source: vendor/google/apiclient-services/src/Integrations/EnterpriseCrmFrontendsEventbusProtoTriggerConfig.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: 7.5 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\Integrations;
19
20class EnterpriseCrmFrontendsEventbusProtoTriggerConfig extends \Google\Collection
21{
22 protected $collection_key = 'startTasks';
23 protected $alertConfigType = EnterpriseCrmEventbusProtoWorkflowAlertConfig::class;
24 protected $alertConfigDataType = 'array';
25 protected $cloudSchedulerConfigType = EnterpriseCrmEventbusProtoCloudSchedulerConfig::class;
26 protected $cloudSchedulerConfigDataType = '';
27 /**
28 * @var string
29 */
30 public $description;
31 /**
32 * @var string[]
33 */
34 public $enabledClients;
35 /**
36 * @var string
37 */
38 public $errorCatcherId;
39 protected $inputVariablesType = EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables::class;
40 protected $inputVariablesDataType = '';
41 /**
42 * @var string
43 */
44 public $label;
45 /**
46 * @var string
47 */
48 public $nextTasksExecutionPolicy;
49 protected $outputVariablesType = EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables::class;
50 protected $outputVariablesDataType = '';
51 /**
52 * @var bool
53 */
54 public $pauseWorkflowExecutions;
55 protected $positionType = EnterpriseCrmEventbusProtoCoordinate::class;
56 protected $positionDataType = '';
57 /**
58 * @var string[]
59 */
60 public $properties;
61 protected $startTasksType = EnterpriseCrmEventbusProtoNextTask::class;
62 protected $startTasksDataType = 'array';
63 protected $triggerCriteriaType = EnterpriseCrmEventbusProtoTriggerCriteria::class;
64 protected $triggerCriteriaDataType = '';
65 /**
66 * @var string
67 */
68 public $triggerId;
69 /**
70 * @var string
71 */
72 public $triggerName;
73 /**
74 * @var string
75 */
76 public $triggerNumber;
77 /**
78 * @var string
79 */
80 public $triggerType;
81
82 /**
83 * @param EnterpriseCrmEventbusProtoWorkflowAlertConfig[]
84 */
85 public function setAlertConfig($alertConfig)
86 {
87 $this->alertConfig = $alertConfig;
88 }
89 /**
90 * @return EnterpriseCrmEventbusProtoWorkflowAlertConfig[]
91 */
92 public function getAlertConfig()
93 {
94 return $this->alertConfig;
95 }
96 /**
97 * @param EnterpriseCrmEventbusProtoCloudSchedulerConfig
98 */
99 public function setCloudSchedulerConfig(EnterpriseCrmEventbusProtoCloudSchedulerConfig $cloudSchedulerConfig)
100 {
101 $this->cloudSchedulerConfig = $cloudSchedulerConfig;
102 }
103 /**
104 * @return EnterpriseCrmEventbusProtoCloudSchedulerConfig
105 */
106 public function getCloudSchedulerConfig()
107 {
108 return $this->cloudSchedulerConfig;
109 }
110 /**
111 * @param string
112 */
113 public function setDescription($description)
114 {
115 $this->description = $description;
116 }
117 /**
118 * @return string
119 */
120 public function getDescription()
121 {
122 return $this->description;
123 }
124 /**
125 * @param string[]
126 */
127 public function setEnabledClients($enabledClients)
128 {
129 $this->enabledClients = $enabledClients;
130 }
131 /**
132 * @return string[]
133 */
134 public function getEnabledClients()
135 {
136 return $this->enabledClients;
137 }
138 /**
139 * @param string
140 */
141 public function setErrorCatcherId($errorCatcherId)
142 {
143 $this->errorCatcherId = $errorCatcherId;
144 }
145 /**
146 * @return string
147 */
148 public function getErrorCatcherId()
149 {
150 return $this->errorCatcherId;
151 }
152 /**
153 * @param EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables
154 */
155 public function setInputVariables(EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables $inputVariables)
156 {
157 $this->inputVariables = $inputVariables;
158 }
159 /**
160 * @return EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables
161 */
162 public function getInputVariables()
163 {
164 return $this->inputVariables;
165 }
166 /**
167 * @param string
168 */
169 public function setLabel($label)
170 {
171 $this->label = $label;
172 }
173 /**
174 * @return string
175 */
176 public function getLabel()
177 {
178 return $this->label;
179 }
180 /**
181 * @param string
182 */
183 public function setNextTasksExecutionPolicy($nextTasksExecutionPolicy)
184 {
185 $this->nextTasksExecutionPolicy = $nextTasksExecutionPolicy;
186 }
187 /**
188 * @return string
189 */
190 public function getNextTasksExecutionPolicy()
191 {
192 return $this->nextTasksExecutionPolicy;
193 }
194 /**
195 * @param EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables
196 */
197 public function setOutputVariables(EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables $outputVariables)
198 {
199 $this->outputVariables = $outputVariables;
200 }
201 /**
202 * @return EnterpriseCrmFrontendsEventbusProtoTriggerConfigVariables
203 */
204 public function getOutputVariables()
205 {
206 return $this->outputVariables;
207 }
208 /**
209 * @param bool
210 */
211 public function setPauseWorkflowExecutions($pauseWorkflowExecutions)
212 {
213 $this->pauseWorkflowExecutions = $pauseWorkflowExecutions;
214 }
215 /**
216 * @return bool
217 */
218 public function getPauseWorkflowExecutions()
219 {
220 return $this->pauseWorkflowExecutions;
221 }
222 /**
223 * @param EnterpriseCrmEventbusProtoCoordinate
224 */
225 public function setPosition(EnterpriseCrmEventbusProtoCoordinate $position)
226 {
227 $this->position = $position;
228 }
229 /**
230 * @return EnterpriseCrmEventbusProtoCoordinate
231 */
232 public function getPosition()
233 {
234 return $this->position;
235 }
236 /**
237 * @param string[]
238 */
239 public function setProperties($properties)
240 {
241 $this->properties = $properties;
242 }
243 /**
244 * @return string[]
245 */
246 public function getProperties()
247 {
248 return $this->properties;
249 }
250 /**
251 * @param EnterpriseCrmEventbusProtoNextTask[]
252 */
253 public function setStartTasks($startTasks)
254 {
255 $this->startTasks = $startTasks;
256 }
257 /**
258 * @return EnterpriseCrmEventbusProtoNextTask[]
259 */
260 public function getStartTasks()
261 {
262 return $this->startTasks;
263 }
264 /**
265 * @param EnterpriseCrmEventbusProtoTriggerCriteria
266 */
267 public function setTriggerCriteria(EnterpriseCrmEventbusProtoTriggerCriteria $triggerCriteria)
268 {
269 $this->triggerCriteria = $triggerCriteria;
270 }
271 /**
272 * @return EnterpriseCrmEventbusProtoTriggerCriteria
273 */
274 public function getTriggerCriteria()
275 {
276 return $this->triggerCriteria;
277 }
278 /**
279 * @param string
280 */
281 public function setTriggerId($triggerId)
282 {
283 $this->triggerId = $triggerId;
284 }
285 /**
286 * @return string
287 */
288 public function getTriggerId()
289 {
290 return $this->triggerId;
291 }
292 /**
293 * @param string
294 */
295 public function setTriggerName($triggerName)
296 {
297 $this->triggerName = $triggerName;
298 }
299 /**
300 * @return string
301 */
302 public function getTriggerName()
303 {
304 return $this->triggerName;
305 }
306 /**
307 * @param string
308 */
309 public function setTriggerNumber($triggerNumber)
310 {
311 $this->triggerNumber = $triggerNumber;
312 }
313 /**
314 * @return string
315 */
316 public function getTriggerNumber()
317 {
318 return $this->triggerNumber;
319 }
320 /**
321 * @param string
322 */
323 public function setTriggerType($triggerType)
324 {
325 $this->triggerType = $triggerType;
326 }
327 /**
328 * @return string
329 */
330 public function getTriggerType()
331 {
332 return $this->triggerType;
333 }
334}
335
336// Adding a class alias for backwards compatibility with the previous class name.
337class_alias(EnterpriseCrmFrontendsEventbusProtoTriggerConfig::class, 'Google_Service_Integrations_EnterpriseCrmFrontendsEventbusProtoTriggerConfig');
Note: See TracBrowser for help on using the repository browser.