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\Analytics;
|
---|
19 |
|
---|
20 | class Profile extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var string
|
---|
24 | */
|
---|
25 | public $accountId;
|
---|
26 | /**
|
---|
27 | * @var bool
|
---|
28 | */
|
---|
29 | public $botFilteringEnabled;
|
---|
30 | protected $childLinkType = ProfileChildLink::class;
|
---|
31 | protected $childLinkDataType = '';
|
---|
32 | /**
|
---|
33 | * @var string
|
---|
34 | */
|
---|
35 | public $created;
|
---|
36 | /**
|
---|
37 | * @var string
|
---|
38 | */
|
---|
39 | public $currency;
|
---|
40 | /**
|
---|
41 | * @var string
|
---|
42 | */
|
---|
43 | public $defaultPage;
|
---|
44 | /**
|
---|
45 | * @var bool
|
---|
46 | */
|
---|
47 | public $eCommerceTracking;
|
---|
48 | /**
|
---|
49 | * @var bool
|
---|
50 | */
|
---|
51 | public $enhancedECommerceTracking;
|
---|
52 | /**
|
---|
53 | * @var string
|
---|
54 | */
|
---|
55 | public $excludeQueryParameters;
|
---|
56 | /**
|
---|
57 | * @var string
|
---|
58 | */
|
---|
59 | public $id;
|
---|
60 | /**
|
---|
61 | * @var string
|
---|
62 | */
|
---|
63 | public $internalWebPropertyId;
|
---|
64 | /**
|
---|
65 | * @var string
|
---|
66 | */
|
---|
67 | public $kind;
|
---|
68 | /**
|
---|
69 | * @var string
|
---|
70 | */
|
---|
71 | public $name;
|
---|
72 | protected $parentLinkType = ProfileParentLink::class;
|
---|
73 | protected $parentLinkDataType = '';
|
---|
74 | protected $permissionsType = ProfilePermissions::class;
|
---|
75 | protected $permissionsDataType = '';
|
---|
76 | /**
|
---|
77 | * @var string
|
---|
78 | */
|
---|
79 | public $selfLink;
|
---|
80 | /**
|
---|
81 | * @var string
|
---|
82 | */
|
---|
83 | public $siteSearchCategoryParameters;
|
---|
84 | /**
|
---|
85 | * @var string
|
---|
86 | */
|
---|
87 | public $siteSearchQueryParameters;
|
---|
88 | /**
|
---|
89 | * @var bool
|
---|
90 | */
|
---|
91 | public $starred;
|
---|
92 | /**
|
---|
93 | * @var bool
|
---|
94 | */
|
---|
95 | public $stripSiteSearchCategoryParameters;
|
---|
96 | /**
|
---|
97 | * @var bool
|
---|
98 | */
|
---|
99 | public $stripSiteSearchQueryParameters;
|
---|
100 | /**
|
---|
101 | * @var string
|
---|
102 | */
|
---|
103 | public $timezone;
|
---|
104 | /**
|
---|
105 | * @var string
|
---|
106 | */
|
---|
107 | public $type;
|
---|
108 | /**
|
---|
109 | * @var string
|
---|
110 | */
|
---|
111 | public $updated;
|
---|
112 | /**
|
---|
113 | * @var string
|
---|
114 | */
|
---|
115 | public $webPropertyId;
|
---|
116 | /**
|
---|
117 | * @var string
|
---|
118 | */
|
---|
119 | public $websiteUrl;
|
---|
120 |
|
---|
121 | /**
|
---|
122 | * @param string
|
---|
123 | */
|
---|
124 | public function setAccountId($accountId)
|
---|
125 | {
|
---|
126 | $this->accountId = $accountId;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @return string
|
---|
130 | */
|
---|
131 | public function getAccountId()
|
---|
132 | {
|
---|
133 | return $this->accountId;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * @param bool
|
---|
137 | */
|
---|
138 | public function setBotFilteringEnabled($botFilteringEnabled)
|
---|
139 | {
|
---|
140 | $this->botFilteringEnabled = $botFilteringEnabled;
|
---|
141 | }
|
---|
142 | /**
|
---|
143 | * @return bool
|
---|
144 | */
|
---|
145 | public function getBotFilteringEnabled()
|
---|
146 | {
|
---|
147 | return $this->botFilteringEnabled;
|
---|
148 | }
|
---|
149 | /**
|
---|
150 | * @param ProfileChildLink
|
---|
151 | */
|
---|
152 | public function setChildLink(ProfileChildLink $childLink)
|
---|
153 | {
|
---|
154 | $this->childLink = $childLink;
|
---|
155 | }
|
---|
156 | /**
|
---|
157 | * @return ProfileChildLink
|
---|
158 | */
|
---|
159 | public function getChildLink()
|
---|
160 | {
|
---|
161 | return $this->childLink;
|
---|
162 | }
|
---|
163 | /**
|
---|
164 | * @param string
|
---|
165 | */
|
---|
166 | public function setCreated($created)
|
---|
167 | {
|
---|
168 | $this->created = $created;
|
---|
169 | }
|
---|
170 | /**
|
---|
171 | * @return string
|
---|
172 | */
|
---|
173 | public function getCreated()
|
---|
174 | {
|
---|
175 | return $this->created;
|
---|
176 | }
|
---|
177 | /**
|
---|
178 | * @param string
|
---|
179 | */
|
---|
180 | public function setCurrency($currency)
|
---|
181 | {
|
---|
182 | $this->currency = $currency;
|
---|
183 | }
|
---|
184 | /**
|
---|
185 | * @return string
|
---|
186 | */
|
---|
187 | public function getCurrency()
|
---|
188 | {
|
---|
189 | return $this->currency;
|
---|
190 | }
|
---|
191 | /**
|
---|
192 | * @param string
|
---|
193 | */
|
---|
194 | public function setDefaultPage($defaultPage)
|
---|
195 | {
|
---|
196 | $this->defaultPage = $defaultPage;
|
---|
197 | }
|
---|
198 | /**
|
---|
199 | * @return string
|
---|
200 | */
|
---|
201 | public function getDefaultPage()
|
---|
202 | {
|
---|
203 | return $this->defaultPage;
|
---|
204 | }
|
---|
205 | /**
|
---|
206 | * @param bool
|
---|
207 | */
|
---|
208 | public function setECommerceTracking($eCommerceTracking)
|
---|
209 | {
|
---|
210 | $this->eCommerceTracking = $eCommerceTracking;
|
---|
211 | }
|
---|
212 | /**
|
---|
213 | * @return bool
|
---|
214 | */
|
---|
215 | public function getECommerceTracking()
|
---|
216 | {
|
---|
217 | return $this->eCommerceTracking;
|
---|
218 | }
|
---|
219 | /**
|
---|
220 | * @param bool
|
---|
221 | */
|
---|
222 | public function setEnhancedECommerceTracking($enhancedECommerceTracking)
|
---|
223 | {
|
---|
224 | $this->enhancedECommerceTracking = $enhancedECommerceTracking;
|
---|
225 | }
|
---|
226 | /**
|
---|
227 | * @return bool
|
---|
228 | */
|
---|
229 | public function getEnhancedECommerceTracking()
|
---|
230 | {
|
---|
231 | return $this->enhancedECommerceTracking;
|
---|
232 | }
|
---|
233 | /**
|
---|
234 | * @param string
|
---|
235 | */
|
---|
236 | public function setExcludeQueryParameters($excludeQueryParameters)
|
---|
237 | {
|
---|
238 | $this->excludeQueryParameters = $excludeQueryParameters;
|
---|
239 | }
|
---|
240 | /**
|
---|
241 | * @return string
|
---|
242 | */
|
---|
243 | public function getExcludeQueryParameters()
|
---|
244 | {
|
---|
245 | return $this->excludeQueryParameters;
|
---|
246 | }
|
---|
247 | /**
|
---|
248 | * @param string
|
---|
249 | */
|
---|
250 | public function setId($id)
|
---|
251 | {
|
---|
252 | $this->id = $id;
|
---|
253 | }
|
---|
254 | /**
|
---|
255 | * @return string
|
---|
256 | */
|
---|
257 | public function getId()
|
---|
258 | {
|
---|
259 | return $this->id;
|
---|
260 | }
|
---|
261 | /**
|
---|
262 | * @param string
|
---|
263 | */
|
---|
264 | public function setInternalWebPropertyId($internalWebPropertyId)
|
---|
265 | {
|
---|
266 | $this->internalWebPropertyId = $internalWebPropertyId;
|
---|
267 | }
|
---|
268 | /**
|
---|
269 | * @return string
|
---|
270 | */
|
---|
271 | public function getInternalWebPropertyId()
|
---|
272 | {
|
---|
273 | return $this->internalWebPropertyId;
|
---|
274 | }
|
---|
275 | /**
|
---|
276 | * @param string
|
---|
277 | */
|
---|
278 | public function setKind($kind)
|
---|
279 | {
|
---|
280 | $this->kind = $kind;
|
---|
281 | }
|
---|
282 | /**
|
---|
283 | * @return string
|
---|
284 | */
|
---|
285 | public function getKind()
|
---|
286 | {
|
---|
287 | return $this->kind;
|
---|
288 | }
|
---|
289 | /**
|
---|
290 | * @param string
|
---|
291 | */
|
---|
292 | public function setName($name)
|
---|
293 | {
|
---|
294 | $this->name = $name;
|
---|
295 | }
|
---|
296 | /**
|
---|
297 | * @return string
|
---|
298 | */
|
---|
299 | public function getName()
|
---|
300 | {
|
---|
301 | return $this->name;
|
---|
302 | }
|
---|
303 | /**
|
---|
304 | * @param ProfileParentLink
|
---|
305 | */
|
---|
306 | public function setParentLink(ProfileParentLink $parentLink)
|
---|
307 | {
|
---|
308 | $this->parentLink = $parentLink;
|
---|
309 | }
|
---|
310 | /**
|
---|
311 | * @return ProfileParentLink
|
---|
312 | */
|
---|
313 | public function getParentLink()
|
---|
314 | {
|
---|
315 | return $this->parentLink;
|
---|
316 | }
|
---|
317 | /**
|
---|
318 | * @param ProfilePermissions
|
---|
319 | */
|
---|
320 | public function setPermissions(ProfilePermissions $permissions)
|
---|
321 | {
|
---|
322 | $this->permissions = $permissions;
|
---|
323 | }
|
---|
324 | /**
|
---|
325 | * @return ProfilePermissions
|
---|
326 | */
|
---|
327 | public function getPermissions()
|
---|
328 | {
|
---|
329 | return $this->permissions;
|
---|
330 | }
|
---|
331 | /**
|
---|
332 | * @param string
|
---|
333 | */
|
---|
334 | public function setSelfLink($selfLink)
|
---|
335 | {
|
---|
336 | $this->selfLink = $selfLink;
|
---|
337 | }
|
---|
338 | /**
|
---|
339 | * @return string
|
---|
340 | */
|
---|
341 | public function getSelfLink()
|
---|
342 | {
|
---|
343 | return $this->selfLink;
|
---|
344 | }
|
---|
345 | /**
|
---|
346 | * @param string
|
---|
347 | */
|
---|
348 | public function setSiteSearchCategoryParameters($siteSearchCategoryParameters)
|
---|
349 | {
|
---|
350 | $this->siteSearchCategoryParameters = $siteSearchCategoryParameters;
|
---|
351 | }
|
---|
352 | /**
|
---|
353 | * @return string
|
---|
354 | */
|
---|
355 | public function getSiteSearchCategoryParameters()
|
---|
356 | {
|
---|
357 | return $this->siteSearchCategoryParameters;
|
---|
358 | }
|
---|
359 | /**
|
---|
360 | * @param string
|
---|
361 | */
|
---|
362 | public function setSiteSearchQueryParameters($siteSearchQueryParameters)
|
---|
363 | {
|
---|
364 | $this->siteSearchQueryParameters = $siteSearchQueryParameters;
|
---|
365 | }
|
---|
366 | /**
|
---|
367 | * @return string
|
---|
368 | */
|
---|
369 | public function getSiteSearchQueryParameters()
|
---|
370 | {
|
---|
371 | return $this->siteSearchQueryParameters;
|
---|
372 | }
|
---|
373 | /**
|
---|
374 | * @param bool
|
---|
375 | */
|
---|
376 | public function setStarred($starred)
|
---|
377 | {
|
---|
378 | $this->starred = $starred;
|
---|
379 | }
|
---|
380 | /**
|
---|
381 | * @return bool
|
---|
382 | */
|
---|
383 | public function getStarred()
|
---|
384 | {
|
---|
385 | return $this->starred;
|
---|
386 | }
|
---|
387 | /**
|
---|
388 | * @param bool
|
---|
389 | */
|
---|
390 | public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters)
|
---|
391 | {
|
---|
392 | $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters;
|
---|
393 | }
|
---|
394 | /**
|
---|
395 | * @return bool
|
---|
396 | */
|
---|
397 | public function getStripSiteSearchCategoryParameters()
|
---|
398 | {
|
---|
399 | return $this->stripSiteSearchCategoryParameters;
|
---|
400 | }
|
---|
401 | /**
|
---|
402 | * @param bool
|
---|
403 | */
|
---|
404 | public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters)
|
---|
405 | {
|
---|
406 | $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters;
|
---|
407 | }
|
---|
408 | /**
|
---|
409 | * @return bool
|
---|
410 | */
|
---|
411 | public function getStripSiteSearchQueryParameters()
|
---|
412 | {
|
---|
413 | return $this->stripSiteSearchQueryParameters;
|
---|
414 | }
|
---|
415 | /**
|
---|
416 | * @param string
|
---|
417 | */
|
---|
418 | public function setTimezone($timezone)
|
---|
419 | {
|
---|
420 | $this->timezone = $timezone;
|
---|
421 | }
|
---|
422 | /**
|
---|
423 | * @return string
|
---|
424 | */
|
---|
425 | public function getTimezone()
|
---|
426 | {
|
---|
427 | return $this->timezone;
|
---|
428 | }
|
---|
429 | /**
|
---|
430 | * @param string
|
---|
431 | */
|
---|
432 | public function setType($type)
|
---|
433 | {
|
---|
434 | $this->type = $type;
|
---|
435 | }
|
---|
436 | /**
|
---|
437 | * @return string
|
---|
438 | */
|
---|
439 | public function getType()
|
---|
440 | {
|
---|
441 | return $this->type;
|
---|
442 | }
|
---|
443 | /**
|
---|
444 | * @param string
|
---|
445 | */
|
---|
446 | public function setUpdated($updated)
|
---|
447 | {
|
---|
448 | $this->updated = $updated;
|
---|
449 | }
|
---|
450 | /**
|
---|
451 | * @return string
|
---|
452 | */
|
---|
453 | public function getUpdated()
|
---|
454 | {
|
---|
455 | return $this->updated;
|
---|
456 | }
|
---|
457 | /**
|
---|
458 | * @param string
|
---|
459 | */
|
---|
460 | public function setWebPropertyId($webPropertyId)
|
---|
461 | {
|
---|
462 | $this->webPropertyId = $webPropertyId;
|
---|
463 | }
|
---|
464 | /**
|
---|
465 | * @return string
|
---|
466 | */
|
---|
467 | public function getWebPropertyId()
|
---|
468 | {
|
---|
469 | return $this->webPropertyId;
|
---|
470 | }
|
---|
471 | /**
|
---|
472 | * @param string
|
---|
473 | */
|
---|
474 | public function setWebsiteUrl($websiteUrl)
|
---|
475 | {
|
---|
476 | $this->websiteUrl = $websiteUrl;
|
---|
477 | }
|
---|
478 | /**
|
---|
479 | * @return string
|
---|
480 | */
|
---|
481 | public function getWebsiteUrl()
|
---|
482 | {
|
---|
483 | return $this->websiteUrl;
|
---|
484 | }
|
---|
485 | }
|
---|
486 |
|
---|
487 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
488 | class_alias(Profile::class, 'Google_Service_Analytics_Profile');
|
---|