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 EnterpriseCrmEventbusProtoSuspensionResolutionInfo extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $auditType = EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit::class;
|
---|
23 | protected $auditDataType = '';
|
---|
24 | /**
|
---|
25 | * @var string
|
---|
26 | */
|
---|
27 | public $clientId;
|
---|
28 | protected $cloudKmsConfigType = EnterpriseCrmEventbusProtoCloudKmsConfig::class;
|
---|
29 | protected $cloudKmsConfigDataType = '';
|
---|
30 | /**
|
---|
31 | * @var string
|
---|
32 | */
|
---|
33 | public $createdTimestamp;
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $encryptedSuspensionResolutionInfo;
|
---|
38 | /**
|
---|
39 | * @var string
|
---|
40 | */
|
---|
41 | public $eventExecutionInfoId;
|
---|
42 | protected $externalTrafficType = EnterpriseCrmEventbusProtoExternalTraffic::class;
|
---|
43 | protected $externalTrafficDataType = '';
|
---|
44 | /**
|
---|
45 | * @var string
|
---|
46 | */
|
---|
47 | public $lastModifiedTimestamp;
|
---|
48 | /**
|
---|
49 | * @var string
|
---|
50 | */
|
---|
51 | public $product;
|
---|
52 | /**
|
---|
53 | * @var string
|
---|
54 | */
|
---|
55 | public $status;
|
---|
56 | protected $suspensionConfigType = EnterpriseCrmEventbusProtoSuspensionConfig::class;
|
---|
57 | protected $suspensionConfigDataType = '';
|
---|
58 | /**
|
---|
59 | * @var string
|
---|
60 | */
|
---|
61 | public $suspensionId;
|
---|
62 | /**
|
---|
63 | * @var string
|
---|
64 | */
|
---|
65 | public $taskNumber;
|
---|
66 | /**
|
---|
67 | * @var string
|
---|
68 | */
|
---|
69 | public $workflowName;
|
---|
70 | /**
|
---|
71 | * @var string
|
---|
72 | */
|
---|
73 | public $wrappedDek;
|
---|
74 |
|
---|
75 | /**
|
---|
76 | * @param EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit
|
---|
77 | */
|
---|
78 | public function setAudit(EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit $audit)
|
---|
79 | {
|
---|
80 | $this->audit = $audit;
|
---|
81 | }
|
---|
82 | /**
|
---|
83 | * @return EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit
|
---|
84 | */
|
---|
85 | public function getAudit()
|
---|
86 | {
|
---|
87 | return $this->audit;
|
---|
88 | }
|
---|
89 | /**
|
---|
90 | * @param string
|
---|
91 | */
|
---|
92 | public function setClientId($clientId)
|
---|
93 | {
|
---|
94 | $this->clientId = $clientId;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @return string
|
---|
98 | */
|
---|
99 | public function getClientId()
|
---|
100 | {
|
---|
101 | return $this->clientId;
|
---|
102 | }
|
---|
103 | /**
|
---|
104 | * @param EnterpriseCrmEventbusProtoCloudKmsConfig
|
---|
105 | */
|
---|
106 | public function setCloudKmsConfig(EnterpriseCrmEventbusProtoCloudKmsConfig $cloudKmsConfig)
|
---|
107 | {
|
---|
108 | $this->cloudKmsConfig = $cloudKmsConfig;
|
---|
109 | }
|
---|
110 | /**
|
---|
111 | * @return EnterpriseCrmEventbusProtoCloudKmsConfig
|
---|
112 | */
|
---|
113 | public function getCloudKmsConfig()
|
---|
114 | {
|
---|
115 | return $this->cloudKmsConfig;
|
---|
116 | }
|
---|
117 | /**
|
---|
118 | * @param string
|
---|
119 | */
|
---|
120 | public function setCreatedTimestamp($createdTimestamp)
|
---|
121 | {
|
---|
122 | $this->createdTimestamp = $createdTimestamp;
|
---|
123 | }
|
---|
124 | /**
|
---|
125 | * @return string
|
---|
126 | */
|
---|
127 | public function getCreatedTimestamp()
|
---|
128 | {
|
---|
129 | return $this->createdTimestamp;
|
---|
130 | }
|
---|
131 | /**
|
---|
132 | * @param string
|
---|
133 | */
|
---|
134 | public function setEncryptedSuspensionResolutionInfo($encryptedSuspensionResolutionInfo)
|
---|
135 | {
|
---|
136 | $this->encryptedSuspensionResolutionInfo = $encryptedSuspensionResolutionInfo;
|
---|
137 | }
|
---|
138 | /**
|
---|
139 | * @return string
|
---|
140 | */
|
---|
141 | public function getEncryptedSuspensionResolutionInfo()
|
---|
142 | {
|
---|
143 | return $this->encryptedSuspensionResolutionInfo;
|
---|
144 | }
|
---|
145 | /**
|
---|
146 | * @param string
|
---|
147 | */
|
---|
148 | public function setEventExecutionInfoId($eventExecutionInfoId)
|
---|
149 | {
|
---|
150 | $this->eventExecutionInfoId = $eventExecutionInfoId;
|
---|
151 | }
|
---|
152 | /**
|
---|
153 | * @return string
|
---|
154 | */
|
---|
155 | public function getEventExecutionInfoId()
|
---|
156 | {
|
---|
157 | return $this->eventExecutionInfoId;
|
---|
158 | }
|
---|
159 | /**
|
---|
160 | * @param EnterpriseCrmEventbusProtoExternalTraffic
|
---|
161 | */
|
---|
162 | public function setExternalTraffic(EnterpriseCrmEventbusProtoExternalTraffic $externalTraffic)
|
---|
163 | {
|
---|
164 | $this->externalTraffic = $externalTraffic;
|
---|
165 | }
|
---|
166 | /**
|
---|
167 | * @return EnterpriseCrmEventbusProtoExternalTraffic
|
---|
168 | */
|
---|
169 | public function getExternalTraffic()
|
---|
170 | {
|
---|
171 | return $this->externalTraffic;
|
---|
172 | }
|
---|
173 | /**
|
---|
174 | * @param string
|
---|
175 | */
|
---|
176 | public function setLastModifiedTimestamp($lastModifiedTimestamp)
|
---|
177 | {
|
---|
178 | $this->lastModifiedTimestamp = $lastModifiedTimestamp;
|
---|
179 | }
|
---|
180 | /**
|
---|
181 | * @return string
|
---|
182 | */
|
---|
183 | public function getLastModifiedTimestamp()
|
---|
184 | {
|
---|
185 | return $this->lastModifiedTimestamp;
|
---|
186 | }
|
---|
187 | /**
|
---|
188 | * @param string
|
---|
189 | */
|
---|
190 | public function setProduct($product)
|
---|
191 | {
|
---|
192 | $this->product = $product;
|
---|
193 | }
|
---|
194 | /**
|
---|
195 | * @return string
|
---|
196 | */
|
---|
197 | public function getProduct()
|
---|
198 | {
|
---|
199 | return $this->product;
|
---|
200 | }
|
---|
201 | /**
|
---|
202 | * @param string
|
---|
203 | */
|
---|
204 | public function setStatus($status)
|
---|
205 | {
|
---|
206 | $this->status = $status;
|
---|
207 | }
|
---|
208 | /**
|
---|
209 | * @return string
|
---|
210 | */
|
---|
211 | public function getStatus()
|
---|
212 | {
|
---|
213 | return $this->status;
|
---|
214 | }
|
---|
215 | /**
|
---|
216 | * @param EnterpriseCrmEventbusProtoSuspensionConfig
|
---|
217 | */
|
---|
218 | public function setSuspensionConfig(EnterpriseCrmEventbusProtoSuspensionConfig $suspensionConfig)
|
---|
219 | {
|
---|
220 | $this->suspensionConfig = $suspensionConfig;
|
---|
221 | }
|
---|
222 | /**
|
---|
223 | * @return EnterpriseCrmEventbusProtoSuspensionConfig
|
---|
224 | */
|
---|
225 | public function getSuspensionConfig()
|
---|
226 | {
|
---|
227 | return $this->suspensionConfig;
|
---|
228 | }
|
---|
229 | /**
|
---|
230 | * @param string
|
---|
231 | */
|
---|
232 | public function setSuspensionId($suspensionId)
|
---|
233 | {
|
---|
234 | $this->suspensionId = $suspensionId;
|
---|
235 | }
|
---|
236 | /**
|
---|
237 | * @return string
|
---|
238 | */
|
---|
239 | public function getSuspensionId()
|
---|
240 | {
|
---|
241 | return $this->suspensionId;
|
---|
242 | }
|
---|
243 | /**
|
---|
244 | * @param string
|
---|
245 | */
|
---|
246 | public function setTaskNumber($taskNumber)
|
---|
247 | {
|
---|
248 | $this->taskNumber = $taskNumber;
|
---|
249 | }
|
---|
250 | /**
|
---|
251 | * @return string
|
---|
252 | */
|
---|
253 | public function getTaskNumber()
|
---|
254 | {
|
---|
255 | return $this->taskNumber;
|
---|
256 | }
|
---|
257 | /**
|
---|
258 | * @param string
|
---|
259 | */
|
---|
260 | public function setWorkflowName($workflowName)
|
---|
261 | {
|
---|
262 | $this->workflowName = $workflowName;
|
---|
263 | }
|
---|
264 | /**
|
---|
265 | * @return string
|
---|
266 | */
|
---|
267 | public function getWorkflowName()
|
---|
268 | {
|
---|
269 | return $this->workflowName;
|
---|
270 | }
|
---|
271 | /**
|
---|
272 | * @param string
|
---|
273 | */
|
---|
274 | public function setWrappedDek($wrappedDek)
|
---|
275 | {
|
---|
276 | $this->wrappedDek = $wrappedDek;
|
---|
277 | }
|
---|
278 | /**
|
---|
279 | * @return string
|
---|
280 | */
|
---|
281 | public function getWrappedDek()
|
---|
282 | {
|
---|
283 | return $this->wrappedDek;
|
---|
284 | }
|
---|
285 | }
|
---|
286 |
|
---|
287 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
288 | class_alias(EnterpriseCrmEventbusProtoSuspensionResolutionInfo::class, 'Google_Service_Integrations_EnterpriseCrmEventbusProtoSuspensionResolutionInfo');
|
---|