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\SA360;
|
---|
19 |
|
---|
20 | class GoogleAdsSearchads360V0ResourcesCustomer extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $accountStatus;
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $accountType;
|
---|
30 | /**
|
---|
31 | * @var bool
|
---|
32 | */
|
---|
33 | public $autoTaggingEnabled;
|
---|
34 | protected $conversionTrackingSettingType = GoogleAdsSearchads360V0ResourcesConversionTrackingSetting::class;
|
---|
35 | protected $conversionTrackingSettingDataType = '';
|
---|
36 | /**
|
---|
37 | * @var string
|
---|
38 | */
|
---|
39 | public $creationTime;
|
---|
40 | /**
|
---|
41 | * @var string
|
---|
42 | */
|
---|
43 | public $currencyCode;
|
---|
44 | /**
|
---|
45 | * @var string
|
---|
46 | */
|
---|
47 | public $descriptiveName;
|
---|
48 | protected $doubleClickCampaignManagerSettingType = GoogleAdsSearchads360V0ResourcesDoubleClickCampaignManagerSetting::class;
|
---|
49 | protected $doubleClickCampaignManagerSettingDataType = '';
|
---|
50 | /**
|
---|
51 | * @var string
|
---|
52 | */
|
---|
53 | public $engineId;
|
---|
54 | /**
|
---|
55 | * @var string
|
---|
56 | */
|
---|
57 | public $finalUrlSuffix;
|
---|
58 | /**
|
---|
59 | * @var string
|
---|
60 | */
|
---|
61 | public $id;
|
---|
62 | /**
|
---|
63 | * @var string
|
---|
64 | */
|
---|
65 | public $lastModifiedTime;
|
---|
66 | /**
|
---|
67 | * @var bool
|
---|
68 | */
|
---|
69 | public $manager;
|
---|
70 | /**
|
---|
71 | * @var string
|
---|
72 | */
|
---|
73 | public $resourceName;
|
---|
74 | /**
|
---|
75 | * @var string
|
---|
76 | */
|
---|
77 | public $status;
|
---|
78 | /**
|
---|
79 | * @var string
|
---|
80 | */
|
---|
81 | public $timeZone;
|
---|
82 | /**
|
---|
83 | * @var string
|
---|
84 | */
|
---|
85 | public $trackingUrlTemplate;
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * @param string
|
---|
89 | */
|
---|
90 | public function setAccountStatus($accountStatus)
|
---|
91 | {
|
---|
92 | $this->accountStatus = $accountStatus;
|
---|
93 | }
|
---|
94 | /**
|
---|
95 | * @return string
|
---|
96 | */
|
---|
97 | public function getAccountStatus()
|
---|
98 | {
|
---|
99 | return $this->accountStatus;
|
---|
100 | }
|
---|
101 | /**
|
---|
102 | * @param string
|
---|
103 | */
|
---|
104 | public function setAccountType($accountType)
|
---|
105 | {
|
---|
106 | $this->accountType = $accountType;
|
---|
107 | }
|
---|
108 | /**
|
---|
109 | * @return string
|
---|
110 | */
|
---|
111 | public function getAccountType()
|
---|
112 | {
|
---|
113 | return $this->accountType;
|
---|
114 | }
|
---|
115 | /**
|
---|
116 | * @param bool
|
---|
117 | */
|
---|
118 | public function setAutoTaggingEnabled($autoTaggingEnabled)
|
---|
119 | {
|
---|
120 | $this->autoTaggingEnabled = $autoTaggingEnabled;
|
---|
121 | }
|
---|
122 | /**
|
---|
123 | * @return bool
|
---|
124 | */
|
---|
125 | public function getAutoTaggingEnabled()
|
---|
126 | {
|
---|
127 | return $this->autoTaggingEnabled;
|
---|
128 | }
|
---|
129 | /**
|
---|
130 | * @param GoogleAdsSearchads360V0ResourcesConversionTrackingSetting
|
---|
131 | */
|
---|
132 | public function setConversionTrackingSetting(GoogleAdsSearchads360V0ResourcesConversionTrackingSetting $conversionTrackingSetting)
|
---|
133 | {
|
---|
134 | $this->conversionTrackingSetting = $conversionTrackingSetting;
|
---|
135 | }
|
---|
136 | /**
|
---|
137 | * @return GoogleAdsSearchads360V0ResourcesConversionTrackingSetting
|
---|
138 | */
|
---|
139 | public function getConversionTrackingSetting()
|
---|
140 | {
|
---|
141 | return $this->conversionTrackingSetting;
|
---|
142 | }
|
---|
143 | /**
|
---|
144 | * @param string
|
---|
145 | */
|
---|
146 | public function setCreationTime($creationTime)
|
---|
147 | {
|
---|
148 | $this->creationTime = $creationTime;
|
---|
149 | }
|
---|
150 | /**
|
---|
151 | * @return string
|
---|
152 | */
|
---|
153 | public function getCreationTime()
|
---|
154 | {
|
---|
155 | return $this->creationTime;
|
---|
156 | }
|
---|
157 | /**
|
---|
158 | * @param string
|
---|
159 | */
|
---|
160 | public function setCurrencyCode($currencyCode)
|
---|
161 | {
|
---|
162 | $this->currencyCode = $currencyCode;
|
---|
163 | }
|
---|
164 | /**
|
---|
165 | * @return string
|
---|
166 | */
|
---|
167 | public function getCurrencyCode()
|
---|
168 | {
|
---|
169 | return $this->currencyCode;
|
---|
170 | }
|
---|
171 | /**
|
---|
172 | * @param string
|
---|
173 | */
|
---|
174 | public function setDescriptiveName($descriptiveName)
|
---|
175 | {
|
---|
176 | $this->descriptiveName = $descriptiveName;
|
---|
177 | }
|
---|
178 | /**
|
---|
179 | * @return string
|
---|
180 | */
|
---|
181 | public function getDescriptiveName()
|
---|
182 | {
|
---|
183 | return $this->descriptiveName;
|
---|
184 | }
|
---|
185 | /**
|
---|
186 | * @param GoogleAdsSearchads360V0ResourcesDoubleClickCampaignManagerSetting
|
---|
187 | */
|
---|
188 | public function setDoubleClickCampaignManagerSetting(GoogleAdsSearchads360V0ResourcesDoubleClickCampaignManagerSetting $doubleClickCampaignManagerSetting)
|
---|
189 | {
|
---|
190 | $this->doubleClickCampaignManagerSetting = $doubleClickCampaignManagerSetting;
|
---|
191 | }
|
---|
192 | /**
|
---|
193 | * @return GoogleAdsSearchads360V0ResourcesDoubleClickCampaignManagerSetting
|
---|
194 | */
|
---|
195 | public function getDoubleClickCampaignManagerSetting()
|
---|
196 | {
|
---|
197 | return $this->doubleClickCampaignManagerSetting;
|
---|
198 | }
|
---|
199 | /**
|
---|
200 | * @param string
|
---|
201 | */
|
---|
202 | public function setEngineId($engineId)
|
---|
203 | {
|
---|
204 | $this->engineId = $engineId;
|
---|
205 | }
|
---|
206 | /**
|
---|
207 | * @return string
|
---|
208 | */
|
---|
209 | public function getEngineId()
|
---|
210 | {
|
---|
211 | return $this->engineId;
|
---|
212 | }
|
---|
213 | /**
|
---|
214 | * @param string
|
---|
215 | */
|
---|
216 | public function setFinalUrlSuffix($finalUrlSuffix)
|
---|
217 | {
|
---|
218 | $this->finalUrlSuffix = $finalUrlSuffix;
|
---|
219 | }
|
---|
220 | /**
|
---|
221 | * @return string
|
---|
222 | */
|
---|
223 | public function getFinalUrlSuffix()
|
---|
224 | {
|
---|
225 | return $this->finalUrlSuffix;
|
---|
226 | }
|
---|
227 | /**
|
---|
228 | * @param string
|
---|
229 | */
|
---|
230 | public function setId($id)
|
---|
231 | {
|
---|
232 | $this->id = $id;
|
---|
233 | }
|
---|
234 | /**
|
---|
235 | * @return string
|
---|
236 | */
|
---|
237 | public function getId()
|
---|
238 | {
|
---|
239 | return $this->id;
|
---|
240 | }
|
---|
241 | /**
|
---|
242 | * @param string
|
---|
243 | */
|
---|
244 | public function setLastModifiedTime($lastModifiedTime)
|
---|
245 | {
|
---|
246 | $this->lastModifiedTime = $lastModifiedTime;
|
---|
247 | }
|
---|
248 | /**
|
---|
249 | * @return string
|
---|
250 | */
|
---|
251 | public function getLastModifiedTime()
|
---|
252 | {
|
---|
253 | return $this->lastModifiedTime;
|
---|
254 | }
|
---|
255 | /**
|
---|
256 | * @param bool
|
---|
257 | */
|
---|
258 | public function setManager($manager)
|
---|
259 | {
|
---|
260 | $this->manager = $manager;
|
---|
261 | }
|
---|
262 | /**
|
---|
263 | * @return bool
|
---|
264 | */
|
---|
265 | public function getManager()
|
---|
266 | {
|
---|
267 | return $this->manager;
|
---|
268 | }
|
---|
269 | /**
|
---|
270 | * @param string
|
---|
271 | */
|
---|
272 | public function setResourceName($resourceName)
|
---|
273 | {
|
---|
274 | $this->resourceName = $resourceName;
|
---|
275 | }
|
---|
276 | /**
|
---|
277 | * @return string
|
---|
278 | */
|
---|
279 | public function getResourceName()
|
---|
280 | {
|
---|
281 | return $this->resourceName;
|
---|
282 | }
|
---|
283 | /**
|
---|
284 | * @param string
|
---|
285 | */
|
---|
286 | public function setStatus($status)
|
---|
287 | {
|
---|
288 | $this->status = $status;
|
---|
289 | }
|
---|
290 | /**
|
---|
291 | * @return string
|
---|
292 | */
|
---|
293 | public function getStatus()
|
---|
294 | {
|
---|
295 | return $this->status;
|
---|
296 | }
|
---|
297 | /**
|
---|
298 | * @param string
|
---|
299 | */
|
---|
300 | public function setTimeZone($timeZone)
|
---|
301 | {
|
---|
302 | $this->timeZone = $timeZone;
|
---|
303 | }
|
---|
304 | /**
|
---|
305 | * @return string
|
---|
306 | */
|
---|
307 | public function getTimeZone()
|
---|
308 | {
|
---|
309 | return $this->timeZone;
|
---|
310 | }
|
---|
311 | /**
|
---|
312 | * @param string
|
---|
313 | */
|
---|
314 | public function setTrackingUrlTemplate($trackingUrlTemplate)
|
---|
315 | {
|
---|
316 | $this->trackingUrlTemplate = $trackingUrlTemplate;
|
---|
317 | }
|
---|
318 | /**
|
---|
319 | * @return string
|
---|
320 | */
|
---|
321 | public function getTrackingUrlTemplate()
|
---|
322 | {
|
---|
323 | return $this->trackingUrlTemplate;
|
---|
324 | }
|
---|
325 | }
|
---|
326 |
|
---|
327 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
328 | class_alias(GoogleAdsSearchads360V0ResourcesCustomer::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesCustomer');
|
---|