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 |
|
---|
18 | namespace Google\Service\Integrations;
|
---|
19 |
|
---|
20 | class EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'errors';
|
---|
23 | /**
|
---|
24 | * @var string
|
---|
25 | */
|
---|
26 | public $clientId;
|
---|
27 | protected $cloudLoggingDetailsType = EnterpriseCrmEventbusProtoCloudLoggingDetails::class;
|
---|
28 | protected $cloudLoggingDetailsDataType = '';
|
---|
29 | /**
|
---|
30 | * @var string
|
---|
31 | */
|
---|
32 | public $createTime;
|
---|
33 | protected $errorCodeType = CrmlogErrorCode::class;
|
---|
34 | protected $errorCodeDataType = '';
|
---|
35 | protected $errorsType = EnterpriseCrmEventbusProtoErrorDetail::class;
|
---|
36 | protected $errorsDataType = 'array';
|
---|
37 | protected $eventExecutionDetailsType = EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails::class;
|
---|
38 | protected $eventExecutionDetailsDataType = '';
|
---|
39 | /**
|
---|
40 | * @var string
|
---|
41 | */
|
---|
42 | public $eventExecutionInfoId;
|
---|
43 | protected $executionTraceInfoType = EnterpriseCrmEventbusProtoExecutionTraceInfo::class;
|
---|
44 | protected $executionTraceInfoDataType = '';
|
---|
45 | /**
|
---|
46 | * @var string
|
---|
47 | */
|
---|
48 | public $integrationVersionUserLabel;
|
---|
49 | /**
|
---|
50 | * @var string
|
---|
51 | */
|
---|
52 | public $lastModifiedTime;
|
---|
53 | /**
|
---|
54 | * @var string
|
---|
55 | */
|
---|
56 | public $postMethod;
|
---|
57 | /**
|
---|
58 | * @var string
|
---|
59 | */
|
---|
60 | public $product;
|
---|
61 | protected $replayInfoType = EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo::class;
|
---|
62 | protected $replayInfoDataType = '';
|
---|
63 | /**
|
---|
64 | * @var string
|
---|
65 | */
|
---|
66 | public $requestId;
|
---|
67 | protected $requestParamsType = EnterpriseCrmFrontendsEventbusProtoEventParameters::class;
|
---|
68 | protected $requestParamsDataType = '';
|
---|
69 | protected $responseParamsType = EnterpriseCrmFrontendsEventbusProtoEventParameters::class;
|
---|
70 | protected $responseParamsDataType = '';
|
---|
71 | /**
|
---|
72 | * @var string
|
---|
73 | */
|
---|
74 | public $snapshotNumber;
|
---|
75 | /**
|
---|
76 | * @var string
|
---|
77 | */
|
---|
78 | public $tenant;
|
---|
79 | /**
|
---|
80 | * @var string
|
---|
81 | */
|
---|
82 | public $triggerId;
|
---|
83 | /**
|
---|
84 | * @var string
|
---|
85 | */
|
---|
86 | public $workflowId;
|
---|
87 | /**
|
---|
88 | * @var string
|
---|
89 | */
|
---|
90 | public $workflowName;
|
---|
91 | /**
|
---|
92 | * @var string
|
---|
93 | */
|
---|
94 | public $workflowRetryBackoffIntervalSeconds;
|
---|
95 |
|
---|
96 | /**
|
---|
97 | * @param string
|
---|
98 | */
|
---|
99 | public function setClientId($clientId)
|
---|
100 | {
|
---|
101 | $this->clientId = $clientId;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @return string
|
---|
105 | */
|
---|
106 | public function getClientId()
|
---|
107 | {
|
---|
108 | return $this->clientId;
|
---|
109 | }
|
---|
110 | /**
|
---|
111 | * @param EnterpriseCrmEventbusProtoCloudLoggingDetails
|
---|
112 | */
|
---|
113 | public function setCloudLoggingDetails(EnterpriseCrmEventbusProtoCloudLoggingDetails $cloudLoggingDetails)
|
---|
114 | {
|
---|
115 | $this->cloudLoggingDetails = $cloudLoggingDetails;
|
---|
116 | }
|
---|
117 | /**
|
---|
118 | * @return EnterpriseCrmEventbusProtoCloudLoggingDetails
|
---|
119 | */
|
---|
120 | public function getCloudLoggingDetails()
|
---|
121 | {
|
---|
122 | return $this->cloudLoggingDetails;
|
---|
123 | }
|
---|
124 | /**
|
---|
125 | * @param string
|
---|
126 | */
|
---|
127 | public function setCreateTime($createTime)
|
---|
128 | {
|
---|
129 | $this->createTime = $createTime;
|
---|
130 | }
|
---|
131 | /**
|
---|
132 | * @return string
|
---|
133 | */
|
---|
134 | public function getCreateTime()
|
---|
135 | {
|
---|
136 | return $this->createTime;
|
---|
137 | }
|
---|
138 | /**
|
---|
139 | * @param CrmlogErrorCode
|
---|
140 | */
|
---|
141 | public function setErrorCode(CrmlogErrorCode $errorCode)
|
---|
142 | {
|
---|
143 | $this->errorCode = $errorCode;
|
---|
144 | }
|
---|
145 | /**
|
---|
146 | * @return CrmlogErrorCode
|
---|
147 | */
|
---|
148 | public function getErrorCode()
|
---|
149 | {
|
---|
150 | return $this->errorCode;
|
---|
151 | }
|
---|
152 | /**
|
---|
153 | * @param EnterpriseCrmEventbusProtoErrorDetail[]
|
---|
154 | */
|
---|
155 | public function setErrors($errors)
|
---|
156 | {
|
---|
157 | $this->errors = $errors;
|
---|
158 | }
|
---|
159 | /**
|
---|
160 | * @return EnterpriseCrmEventbusProtoErrorDetail[]
|
---|
161 | */
|
---|
162 | public function getErrors()
|
---|
163 | {
|
---|
164 | return $this->errors;
|
---|
165 | }
|
---|
166 | /**
|
---|
167 | * @param EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails
|
---|
168 | */
|
---|
169 | public function setEventExecutionDetails(EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails $eventExecutionDetails)
|
---|
170 | {
|
---|
171 | $this->eventExecutionDetails = $eventExecutionDetails;
|
---|
172 | }
|
---|
173 | /**
|
---|
174 | * @return EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails
|
---|
175 | */
|
---|
176 | public function getEventExecutionDetails()
|
---|
177 | {
|
---|
178 | return $this->eventExecutionDetails;
|
---|
179 | }
|
---|
180 | /**
|
---|
181 | * @param string
|
---|
182 | */
|
---|
183 | public function setEventExecutionInfoId($eventExecutionInfoId)
|
---|
184 | {
|
---|
185 | $this->eventExecutionInfoId = $eventExecutionInfoId;
|
---|
186 | }
|
---|
187 | /**
|
---|
188 | * @return string
|
---|
189 | */
|
---|
190 | public function getEventExecutionInfoId()
|
---|
191 | {
|
---|
192 | return $this->eventExecutionInfoId;
|
---|
193 | }
|
---|
194 | /**
|
---|
195 | * @param EnterpriseCrmEventbusProtoExecutionTraceInfo
|
---|
196 | */
|
---|
197 | public function setExecutionTraceInfo(EnterpriseCrmEventbusProtoExecutionTraceInfo $executionTraceInfo)
|
---|
198 | {
|
---|
199 | $this->executionTraceInfo = $executionTraceInfo;
|
---|
200 | }
|
---|
201 | /**
|
---|
202 | * @return EnterpriseCrmEventbusProtoExecutionTraceInfo
|
---|
203 | */
|
---|
204 | public function getExecutionTraceInfo()
|
---|
205 | {
|
---|
206 | return $this->executionTraceInfo;
|
---|
207 | }
|
---|
208 | /**
|
---|
209 | * @param string
|
---|
210 | */
|
---|
211 | public function setIntegrationVersionUserLabel($integrationVersionUserLabel)
|
---|
212 | {
|
---|
213 | $this->integrationVersionUserLabel = $integrationVersionUserLabel;
|
---|
214 | }
|
---|
215 | /**
|
---|
216 | * @return string
|
---|
217 | */
|
---|
218 | public function getIntegrationVersionUserLabel()
|
---|
219 | {
|
---|
220 | return $this->integrationVersionUserLabel;
|
---|
221 | }
|
---|
222 | /**
|
---|
223 | * @param string
|
---|
224 | */
|
---|
225 | public function setLastModifiedTime($lastModifiedTime)
|
---|
226 | {
|
---|
227 | $this->lastModifiedTime = $lastModifiedTime;
|
---|
228 | }
|
---|
229 | /**
|
---|
230 | * @return string
|
---|
231 | */
|
---|
232 | public function getLastModifiedTime()
|
---|
233 | {
|
---|
234 | return $this->lastModifiedTime;
|
---|
235 | }
|
---|
236 | /**
|
---|
237 | * @param string
|
---|
238 | */
|
---|
239 | public function setPostMethod($postMethod)
|
---|
240 | {
|
---|
241 | $this->postMethod = $postMethod;
|
---|
242 | }
|
---|
243 | /**
|
---|
244 | * @return string
|
---|
245 | */
|
---|
246 | public function getPostMethod()
|
---|
247 | {
|
---|
248 | return $this->postMethod;
|
---|
249 | }
|
---|
250 | /**
|
---|
251 | * @param string
|
---|
252 | */
|
---|
253 | public function setProduct($product)
|
---|
254 | {
|
---|
255 | $this->product = $product;
|
---|
256 | }
|
---|
257 | /**
|
---|
258 | * @return string
|
---|
259 | */
|
---|
260 | public function getProduct()
|
---|
261 | {
|
---|
262 | return $this->product;
|
---|
263 | }
|
---|
264 | /**
|
---|
265 | * @param EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
|
---|
266 | */
|
---|
267 | public function setReplayInfo(EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo $replayInfo)
|
---|
268 | {
|
---|
269 | $this->replayInfo = $replayInfo;
|
---|
270 | }
|
---|
271 | /**
|
---|
272 | * @return EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo
|
---|
273 | */
|
---|
274 | public function getReplayInfo()
|
---|
275 | {
|
---|
276 | return $this->replayInfo;
|
---|
277 | }
|
---|
278 | /**
|
---|
279 | * @param string
|
---|
280 | */
|
---|
281 | public function setRequestId($requestId)
|
---|
282 | {
|
---|
283 | $this->requestId = $requestId;
|
---|
284 | }
|
---|
285 | /**
|
---|
286 | * @return string
|
---|
287 | */
|
---|
288 | public function getRequestId()
|
---|
289 | {
|
---|
290 | return $this->requestId;
|
---|
291 | }
|
---|
292 | /**
|
---|
293 | * @param EnterpriseCrmFrontendsEventbusProtoEventParameters
|
---|
294 | */
|
---|
295 | public function setRequestParams(EnterpriseCrmFrontendsEventbusProtoEventParameters $requestParams)
|
---|
296 | {
|
---|
297 | $this->requestParams = $requestParams;
|
---|
298 | }
|
---|
299 | /**
|
---|
300 | * @return EnterpriseCrmFrontendsEventbusProtoEventParameters
|
---|
301 | */
|
---|
302 | public function getRequestParams()
|
---|
303 | {
|
---|
304 | return $this->requestParams;
|
---|
305 | }
|
---|
306 | /**
|
---|
307 | * @param EnterpriseCrmFrontendsEventbusProtoEventParameters
|
---|
308 | */
|
---|
309 | public function setResponseParams(EnterpriseCrmFrontendsEventbusProtoEventParameters $responseParams)
|
---|
310 | {
|
---|
311 | $this->responseParams = $responseParams;
|
---|
312 | }
|
---|
313 | /**
|
---|
314 | * @return EnterpriseCrmFrontendsEventbusProtoEventParameters
|
---|
315 | */
|
---|
316 | public function getResponseParams()
|
---|
317 | {
|
---|
318 | return $this->responseParams;
|
---|
319 | }
|
---|
320 | /**
|
---|
321 | * @param string
|
---|
322 | */
|
---|
323 | public function setSnapshotNumber($snapshotNumber)
|
---|
324 | {
|
---|
325 | $this->snapshotNumber = $snapshotNumber;
|
---|
326 | }
|
---|
327 | /**
|
---|
328 | * @return string
|
---|
329 | */
|
---|
330 | public function getSnapshotNumber()
|
---|
331 | {
|
---|
332 | return $this->snapshotNumber;
|
---|
333 | }
|
---|
334 | /**
|
---|
335 | * @param string
|
---|
336 | */
|
---|
337 | public function setTenant($tenant)
|
---|
338 | {
|
---|
339 | $this->tenant = $tenant;
|
---|
340 | }
|
---|
341 | /**
|
---|
342 | * @return string
|
---|
343 | */
|
---|
344 | public function getTenant()
|
---|
345 | {
|
---|
346 | return $this->tenant;
|
---|
347 | }
|
---|
348 | /**
|
---|
349 | * @param string
|
---|
350 | */
|
---|
351 | public function setTriggerId($triggerId)
|
---|
352 | {
|
---|
353 | $this->triggerId = $triggerId;
|
---|
354 | }
|
---|
355 | /**
|
---|
356 | * @return string
|
---|
357 | */
|
---|
358 | public function getTriggerId()
|
---|
359 | {
|
---|
360 | return $this->triggerId;
|
---|
361 | }
|
---|
362 | /**
|
---|
363 | * @param string
|
---|
364 | */
|
---|
365 | public function setWorkflowId($workflowId)
|
---|
366 | {
|
---|
367 | $this->workflowId = $workflowId;
|
---|
368 | }
|
---|
369 | /**
|
---|
370 | * @return string
|
---|
371 | */
|
---|
372 | public function getWorkflowId()
|
---|
373 | {
|
---|
374 | return $this->workflowId;
|
---|
375 | }
|
---|
376 | /**
|
---|
377 | * @param string
|
---|
378 | */
|
---|
379 | public function setWorkflowName($workflowName)
|
---|
380 | {
|
---|
381 | $this->workflowName = $workflowName;
|
---|
382 | }
|
---|
383 | /**
|
---|
384 | * @return string
|
---|
385 | */
|
---|
386 | public function getWorkflowName()
|
---|
387 | {
|
---|
388 | return $this->workflowName;
|
---|
389 | }
|
---|
390 | /**
|
---|
391 | * @param string
|
---|
392 | */
|
---|
393 | public function setWorkflowRetryBackoffIntervalSeconds($workflowRetryBackoffIntervalSeconds)
|
---|
394 | {
|
---|
395 | $this->workflowRetryBackoffIntervalSeconds = $workflowRetryBackoffIntervalSeconds;
|
---|
396 | }
|
---|
397 | /**
|
---|
398 | * @return string
|
---|
399 | */
|
---|
400 | public function getWorkflowRetryBackoffIntervalSeconds()
|
---|
401 | {
|
---|
402 | return $this->workflowRetryBackoffIntervalSeconds;
|
---|
403 | }
|
---|
404 | }
|
---|
405 |
|
---|
406 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
407 | class_alias(EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo::class, 'Google_Service_Integrations_EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo');
|
---|