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 GoogleCloudIntegrationsV1alphaExecution extends \Google\Collection
|
---|
21 | {
|
---|
22 | protected $collection_key = 'responseParams';
|
---|
23 | protected $cloudLoggingDetailsType = GoogleCloudIntegrationsV1alphaCloudLoggingDetails::class;
|
---|
24 | protected $cloudLoggingDetailsDataType = '';
|
---|
25 | /**
|
---|
26 | * @var string
|
---|
27 | */
|
---|
28 | public $createTime;
|
---|
29 | protected $directSubExecutionsType = GoogleCloudIntegrationsV1alphaExecution::class;
|
---|
30 | protected $directSubExecutionsDataType = 'array';
|
---|
31 | protected $eventExecutionDetailsType = EnterpriseCrmEventbusProtoEventExecutionDetails::class;
|
---|
32 | protected $eventExecutionDetailsDataType = '';
|
---|
33 | protected $executionDetailsType = GoogleCloudIntegrationsV1alphaExecutionDetails::class;
|
---|
34 | protected $executionDetailsDataType = '';
|
---|
35 | /**
|
---|
36 | * @var string
|
---|
37 | */
|
---|
38 | public $executionMethod;
|
---|
39 | /**
|
---|
40 | * @var string
|
---|
41 | */
|
---|
42 | public $integrationVersionState;
|
---|
43 | /**
|
---|
44 | * @var string
|
---|
45 | */
|
---|
46 | public $name;
|
---|
47 | protected $replayInfoType = GoogleCloudIntegrationsV1alphaExecutionReplayInfo::class;
|
---|
48 | protected $replayInfoDataType = '';
|
---|
49 | protected $requestParametersType = GoogleCloudIntegrationsV1alphaValueType::class;
|
---|
50 | protected $requestParametersDataType = 'map';
|
---|
51 | protected $requestParamsType = EnterpriseCrmFrontendsEventbusProtoParameterEntry::class;
|
---|
52 | protected $requestParamsDataType = 'array';
|
---|
53 | protected $responseParametersType = GoogleCloudIntegrationsV1alphaValueType::class;
|
---|
54 | protected $responseParametersDataType = 'map';
|
---|
55 | protected $responseParamsType = EnterpriseCrmFrontendsEventbusProtoParameterEntry::class;
|
---|
56 | protected $responseParamsDataType = 'array';
|
---|
57 | /**
|
---|
58 | * @var string
|
---|
59 | */
|
---|
60 | public $snapshotNumber;
|
---|
61 | /**
|
---|
62 | * @var string
|
---|
63 | */
|
---|
64 | public $triggerId;
|
---|
65 | /**
|
---|
66 | * @var string
|
---|
67 | */
|
---|
68 | public $updateTime;
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * @param GoogleCloudIntegrationsV1alphaCloudLoggingDetails
|
---|
72 | */
|
---|
73 | public function setCloudLoggingDetails(GoogleCloudIntegrationsV1alphaCloudLoggingDetails $cloudLoggingDetails)
|
---|
74 | {
|
---|
75 | $this->cloudLoggingDetails = $cloudLoggingDetails;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @return GoogleCloudIntegrationsV1alphaCloudLoggingDetails
|
---|
79 | */
|
---|
80 | public function getCloudLoggingDetails()
|
---|
81 | {
|
---|
82 | return $this->cloudLoggingDetails;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @param string
|
---|
86 | */
|
---|
87 | public function setCreateTime($createTime)
|
---|
88 | {
|
---|
89 | $this->createTime = $createTime;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @return string
|
---|
93 | */
|
---|
94 | public function getCreateTime()
|
---|
95 | {
|
---|
96 | return $this->createTime;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @param GoogleCloudIntegrationsV1alphaExecution[]
|
---|
100 | */
|
---|
101 | public function setDirectSubExecutions($directSubExecutions)
|
---|
102 | {
|
---|
103 | $this->directSubExecutions = $directSubExecutions;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @return GoogleCloudIntegrationsV1alphaExecution[]
|
---|
107 | */
|
---|
108 | public function getDirectSubExecutions()
|
---|
109 | {
|
---|
110 | return $this->directSubExecutions;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @param EnterpriseCrmEventbusProtoEventExecutionDetails
|
---|
114 | */
|
---|
115 | public function setEventExecutionDetails(EnterpriseCrmEventbusProtoEventExecutionDetails $eventExecutionDetails)
|
---|
116 | {
|
---|
117 | $this->eventExecutionDetails = $eventExecutionDetails;
|
---|
118 | }
|
---|
119 | /**
|
---|
120 | * @return EnterpriseCrmEventbusProtoEventExecutionDetails
|
---|
121 | */
|
---|
122 | public function getEventExecutionDetails()
|
---|
123 | {
|
---|
124 | return $this->eventExecutionDetails;
|
---|
125 | }
|
---|
126 | /**
|
---|
127 | * @param GoogleCloudIntegrationsV1alphaExecutionDetails
|
---|
128 | */
|
---|
129 | public function setExecutionDetails(GoogleCloudIntegrationsV1alphaExecutionDetails $executionDetails)
|
---|
130 | {
|
---|
131 | $this->executionDetails = $executionDetails;
|
---|
132 | }
|
---|
133 | /**
|
---|
134 | * @return GoogleCloudIntegrationsV1alphaExecutionDetails
|
---|
135 | */
|
---|
136 | public function getExecutionDetails()
|
---|
137 | {
|
---|
138 | return $this->executionDetails;
|
---|
139 | }
|
---|
140 | /**
|
---|
141 | * @param string
|
---|
142 | */
|
---|
143 | public function setExecutionMethod($executionMethod)
|
---|
144 | {
|
---|
145 | $this->executionMethod = $executionMethod;
|
---|
146 | }
|
---|
147 | /**
|
---|
148 | * @return string
|
---|
149 | */
|
---|
150 | public function getExecutionMethod()
|
---|
151 | {
|
---|
152 | return $this->executionMethod;
|
---|
153 | }
|
---|
154 | /**
|
---|
155 | * @param string
|
---|
156 | */
|
---|
157 | public function setIntegrationVersionState($integrationVersionState)
|
---|
158 | {
|
---|
159 | $this->integrationVersionState = $integrationVersionState;
|
---|
160 | }
|
---|
161 | /**
|
---|
162 | * @return string
|
---|
163 | */
|
---|
164 | public function getIntegrationVersionState()
|
---|
165 | {
|
---|
166 | return $this->integrationVersionState;
|
---|
167 | }
|
---|
168 | /**
|
---|
169 | * @param string
|
---|
170 | */
|
---|
171 | public function setName($name)
|
---|
172 | {
|
---|
173 | $this->name = $name;
|
---|
174 | }
|
---|
175 | /**
|
---|
176 | * @return string
|
---|
177 | */
|
---|
178 | public function getName()
|
---|
179 | {
|
---|
180 | return $this->name;
|
---|
181 | }
|
---|
182 | /**
|
---|
183 | * @param GoogleCloudIntegrationsV1alphaExecutionReplayInfo
|
---|
184 | */
|
---|
185 | public function setReplayInfo(GoogleCloudIntegrationsV1alphaExecutionReplayInfo $replayInfo)
|
---|
186 | {
|
---|
187 | $this->replayInfo = $replayInfo;
|
---|
188 | }
|
---|
189 | /**
|
---|
190 | * @return GoogleCloudIntegrationsV1alphaExecutionReplayInfo
|
---|
191 | */
|
---|
192 | public function getReplayInfo()
|
---|
193 | {
|
---|
194 | return $this->replayInfo;
|
---|
195 | }
|
---|
196 | /**
|
---|
197 | * @param GoogleCloudIntegrationsV1alphaValueType[]
|
---|
198 | */
|
---|
199 | public function setRequestParameters($requestParameters)
|
---|
200 | {
|
---|
201 | $this->requestParameters = $requestParameters;
|
---|
202 | }
|
---|
203 | /**
|
---|
204 | * @return GoogleCloudIntegrationsV1alphaValueType[]
|
---|
205 | */
|
---|
206 | public function getRequestParameters()
|
---|
207 | {
|
---|
208 | return $this->requestParameters;
|
---|
209 | }
|
---|
210 | /**
|
---|
211 | * @param EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
|
---|
212 | */
|
---|
213 | public function setRequestParams($requestParams)
|
---|
214 | {
|
---|
215 | $this->requestParams = $requestParams;
|
---|
216 | }
|
---|
217 | /**
|
---|
218 | * @return EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
|
---|
219 | */
|
---|
220 | public function getRequestParams()
|
---|
221 | {
|
---|
222 | return $this->requestParams;
|
---|
223 | }
|
---|
224 | /**
|
---|
225 | * @param GoogleCloudIntegrationsV1alphaValueType[]
|
---|
226 | */
|
---|
227 | public function setResponseParameters($responseParameters)
|
---|
228 | {
|
---|
229 | $this->responseParameters = $responseParameters;
|
---|
230 | }
|
---|
231 | /**
|
---|
232 | * @return GoogleCloudIntegrationsV1alphaValueType[]
|
---|
233 | */
|
---|
234 | public function getResponseParameters()
|
---|
235 | {
|
---|
236 | return $this->responseParameters;
|
---|
237 | }
|
---|
238 | /**
|
---|
239 | * @param EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
|
---|
240 | */
|
---|
241 | public function setResponseParams($responseParams)
|
---|
242 | {
|
---|
243 | $this->responseParams = $responseParams;
|
---|
244 | }
|
---|
245 | /**
|
---|
246 | * @return EnterpriseCrmFrontendsEventbusProtoParameterEntry[]
|
---|
247 | */
|
---|
248 | public function getResponseParams()
|
---|
249 | {
|
---|
250 | return $this->responseParams;
|
---|
251 | }
|
---|
252 | /**
|
---|
253 | * @param string
|
---|
254 | */
|
---|
255 | public function setSnapshotNumber($snapshotNumber)
|
---|
256 | {
|
---|
257 | $this->snapshotNumber = $snapshotNumber;
|
---|
258 | }
|
---|
259 | /**
|
---|
260 | * @return string
|
---|
261 | */
|
---|
262 | public function getSnapshotNumber()
|
---|
263 | {
|
---|
264 | return $this->snapshotNumber;
|
---|
265 | }
|
---|
266 | /**
|
---|
267 | * @param string
|
---|
268 | */
|
---|
269 | public function setTriggerId($triggerId)
|
---|
270 | {
|
---|
271 | $this->triggerId = $triggerId;
|
---|
272 | }
|
---|
273 | /**
|
---|
274 | * @return string
|
---|
275 | */
|
---|
276 | public function getTriggerId()
|
---|
277 | {
|
---|
278 | return $this->triggerId;
|
---|
279 | }
|
---|
280 | /**
|
---|
281 | * @param string
|
---|
282 | */
|
---|
283 | public function setUpdateTime($updateTime)
|
---|
284 | {
|
---|
285 | $this->updateTime = $updateTime;
|
---|
286 | }
|
---|
287 | /**
|
---|
288 | * @return string
|
---|
289 | */
|
---|
290 | public function getUpdateTime()
|
---|
291 | {
|
---|
292 | return $this->updateTime;
|
---|
293 | }
|
---|
294 | }
|
---|
295 |
|
---|
296 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
297 | class_alias(GoogleCloudIntegrationsV1alphaExecution::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaExecution');
|
---|