source: vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource.php@ f9c482b

Last change on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload new project files

  • Property mode set to 100644
File size: 4.8 KB
Line 
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
18namespace Google\Service\GoogleAnalyticsAdmin;
19
20class GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource extends \Google\Model
21{
22 protected $accountType = GoogleAnalyticsAdminV1betaAccount::class;
23 protected $accountDataType = '';
24 protected $conversionEventType = GoogleAnalyticsAdminV1betaConversionEvent::class;
25 protected $conversionEventDataType = '';
26 protected $dataRetentionSettingsType = GoogleAnalyticsAdminV1betaDataRetentionSettings::class;
27 protected $dataRetentionSettingsDataType = '';
28 protected $dataStreamType = GoogleAnalyticsAdminV1betaDataStream::class;
29 protected $dataStreamDataType = '';
30 protected $firebaseLinkType = GoogleAnalyticsAdminV1betaFirebaseLink::class;
31 protected $firebaseLinkDataType = '';
32 protected $googleAdsLinkType = GoogleAnalyticsAdminV1betaGoogleAdsLink::class;
33 protected $googleAdsLinkDataType = '';
34 protected $measurementProtocolSecretType = GoogleAnalyticsAdminV1betaMeasurementProtocolSecret::class;
35 protected $measurementProtocolSecretDataType = '';
36 protected $propertyType = GoogleAnalyticsAdminV1betaProperty::class;
37 protected $propertyDataType = '';
38
39 /**
40 * @param GoogleAnalyticsAdminV1betaAccount
41 */
42 public function setAccount(GoogleAnalyticsAdminV1betaAccount $account)
43 {
44 $this->account = $account;
45 }
46 /**
47 * @return GoogleAnalyticsAdminV1betaAccount
48 */
49 public function getAccount()
50 {
51 return $this->account;
52 }
53 /**
54 * @param GoogleAnalyticsAdminV1betaConversionEvent
55 */
56 public function setConversionEvent(GoogleAnalyticsAdminV1betaConversionEvent $conversionEvent)
57 {
58 $this->conversionEvent = $conversionEvent;
59 }
60 /**
61 * @return GoogleAnalyticsAdminV1betaConversionEvent
62 */
63 public function getConversionEvent()
64 {
65 return $this->conversionEvent;
66 }
67 /**
68 * @param GoogleAnalyticsAdminV1betaDataRetentionSettings
69 */
70 public function setDataRetentionSettings(GoogleAnalyticsAdminV1betaDataRetentionSettings $dataRetentionSettings)
71 {
72 $this->dataRetentionSettings = $dataRetentionSettings;
73 }
74 /**
75 * @return GoogleAnalyticsAdminV1betaDataRetentionSettings
76 */
77 public function getDataRetentionSettings()
78 {
79 return $this->dataRetentionSettings;
80 }
81 /**
82 * @param GoogleAnalyticsAdminV1betaDataStream
83 */
84 public function setDataStream(GoogleAnalyticsAdminV1betaDataStream $dataStream)
85 {
86 $this->dataStream = $dataStream;
87 }
88 /**
89 * @return GoogleAnalyticsAdminV1betaDataStream
90 */
91 public function getDataStream()
92 {
93 return $this->dataStream;
94 }
95 /**
96 * @param GoogleAnalyticsAdminV1betaFirebaseLink
97 */
98 public function setFirebaseLink(GoogleAnalyticsAdminV1betaFirebaseLink $firebaseLink)
99 {
100 $this->firebaseLink = $firebaseLink;
101 }
102 /**
103 * @return GoogleAnalyticsAdminV1betaFirebaseLink
104 */
105 public function getFirebaseLink()
106 {
107 return $this->firebaseLink;
108 }
109 /**
110 * @param GoogleAnalyticsAdminV1betaGoogleAdsLink
111 */
112 public function setGoogleAdsLink(GoogleAnalyticsAdminV1betaGoogleAdsLink $googleAdsLink)
113 {
114 $this->googleAdsLink = $googleAdsLink;
115 }
116 /**
117 * @return GoogleAnalyticsAdminV1betaGoogleAdsLink
118 */
119 public function getGoogleAdsLink()
120 {
121 return $this->googleAdsLink;
122 }
123 /**
124 * @param GoogleAnalyticsAdminV1betaMeasurementProtocolSecret
125 */
126 public function setMeasurementProtocolSecret(GoogleAnalyticsAdminV1betaMeasurementProtocolSecret $measurementProtocolSecret)
127 {
128 $this->measurementProtocolSecret = $measurementProtocolSecret;
129 }
130 /**
131 * @return GoogleAnalyticsAdminV1betaMeasurementProtocolSecret
132 */
133 public function getMeasurementProtocolSecret()
134 {
135 return $this->measurementProtocolSecret;
136 }
137 /**
138 * @param GoogleAnalyticsAdminV1betaProperty
139 */
140 public function setProperty(GoogleAnalyticsAdminV1betaProperty $property)
141 {
142 $this->property = $property;
143 }
144 /**
145 * @return GoogleAnalyticsAdminV1betaProperty
146 */
147 public function getProperty()
148 {
149 return $this->property;
150 }
151}
152
153// Adding a class alias for backwards compatibility with the previous class name.
154class_alias(GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource');
Note: See TracBrowser for help on using the repository browser.