Skip to content

Commit 4792e08

Browse files
1 parent 48d1e8d commit 4792e08

File tree

48 files changed

+3535
-954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3535
-954
lines changed

src/GoogleAnalyticsAdmin.php

Lines changed: 52 additions & 680 deletions
Large diffs are not rendered by default.
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaAccount extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $createTime;
26+
/**
27+
* @var bool
28+
*/
29+
public $deleted;
30+
/**
31+
* @var string
32+
*/
33+
public $displayName;
34+
/**
35+
* @var string
36+
*/
37+
public $name;
38+
/**
39+
* @var string
40+
*/
41+
public $regionCode;
42+
/**
43+
* @var string
44+
*/
45+
public $updateTime;
46+
47+
/**
48+
* @param string
49+
*/
50+
public function setCreateTime($createTime)
51+
{
52+
$this->createTime = $createTime;
53+
}
54+
/**
55+
* @return string
56+
*/
57+
public function getCreateTime()
58+
{
59+
return $this->createTime;
60+
}
61+
/**
62+
* @param bool
63+
*/
64+
public function setDeleted($deleted)
65+
{
66+
$this->deleted = $deleted;
67+
}
68+
/**
69+
* @return bool
70+
*/
71+
public function getDeleted()
72+
{
73+
return $this->deleted;
74+
}
75+
/**
76+
* @param string
77+
*/
78+
public function setDisplayName($displayName)
79+
{
80+
$this->displayName = $displayName;
81+
}
82+
/**
83+
* @return string
84+
*/
85+
public function getDisplayName()
86+
{
87+
return $this->displayName;
88+
}
89+
/**
90+
* @param string
91+
*/
92+
public function setName($name)
93+
{
94+
$this->name = $name;
95+
}
96+
/**
97+
* @return string
98+
*/
99+
public function getName()
100+
{
101+
return $this->name;
102+
}
103+
/**
104+
* @param string
105+
*/
106+
public function setRegionCode($regionCode)
107+
{
108+
$this->regionCode = $regionCode;
109+
}
110+
/**
111+
* @return string
112+
*/
113+
public function getRegionCode()
114+
{
115+
return $this->regionCode;
116+
}
117+
/**
118+
* @param string
119+
*/
120+
public function setUpdateTime($updateTime)
121+
{
122+
$this->updateTime = $updateTime;
123+
}
124+
/**
125+
* @return string
126+
*/
127+
public function getUpdateTime()
128+
{
129+
return $this->updateTime;
130+
}
131+
}
132+
133+
// Adding a class alias for backwards compatibility with the previous class name.
134+
class_alias(GoogleAnalyticsAdminV1betaAccount::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaAccount');
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaAccountSummary extends \Google\Collection
21+
{
22+
protected $collection_key = 'propertySummaries';
23+
/**
24+
* @var string
25+
*/
26+
public $account;
27+
/**
28+
* @var string
29+
*/
30+
public $displayName;
31+
/**
32+
* @var string
33+
*/
34+
public $name;
35+
protected $propertySummariesType = GoogleAnalyticsAdminV1betaPropertySummary::class;
36+
protected $propertySummariesDataType = 'array';
37+
38+
/**
39+
* @param string
40+
*/
41+
public function setAccount($account)
42+
{
43+
$this->account = $account;
44+
}
45+
/**
46+
* @return string
47+
*/
48+
public function getAccount()
49+
{
50+
return $this->account;
51+
}
52+
/**
53+
* @param string
54+
*/
55+
public function setDisplayName($displayName)
56+
{
57+
$this->displayName = $displayName;
58+
}
59+
/**
60+
* @return string
61+
*/
62+
public function getDisplayName()
63+
{
64+
return $this->displayName;
65+
}
66+
/**
67+
* @param string
68+
*/
69+
public function setName($name)
70+
{
71+
$this->name = $name;
72+
}
73+
/**
74+
* @return string
75+
*/
76+
public function getName()
77+
{
78+
return $this->name;
79+
}
80+
/**
81+
* @param GoogleAnalyticsAdminV1betaPropertySummary[]
82+
*/
83+
public function setPropertySummaries($propertySummaries)
84+
{
85+
$this->propertySummaries = $propertySummaries;
86+
}
87+
/**
88+
* @return GoogleAnalyticsAdminV1betaPropertySummary[]
89+
*/
90+
public function getPropertySummaries()
91+
{
92+
return $this->propertySummaries;
93+
}
94+
}
95+
96+
// Adding a class alias for backwards compatibility with the previous class name.
97+
class_alias(GoogleAnalyticsAdminV1betaAccountSummary::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaAccountSummary');
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $acknowledgement;
26+
27+
/**
28+
* @param string
29+
*/
30+
public function setAcknowledgement($acknowledgement)
31+
{
32+
$this->acknowledgement = $acknowledgement;
33+
}
34+
/**
35+
* @return string
36+
*/
37+
public function getAcknowledgement()
38+
{
39+
return $this->acknowledgement;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionRequest');
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaAcknowledgeUserDataCollectionResponse');
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaArchiveCustomDimensionRequest');
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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\GoogleAnalyticsAdmin;
19+
20+
class GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest::class, 'Google_Service_GoogleAnalyticsAdmin_GoogleAnalyticsAdminV1betaArchiveCustomMetricRequest');

0 commit comments

Comments
 (0)