Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "evert/google-api-php-client",
"name": "rafalzmuda/google-api-php-client",
"type": "library",
"description": "Google API library for PHP",
"keywords": ["google","gdata"],
"homepage": "https://github.com/evert/google-api-php-client",
"homepage": "https://github.com/rafalzmuda/google-api-php-client",
"license": "Apache 2.0",
"authors": [
{
Expand Down
14 changes: 14 additions & 0 deletions src/GoogleApi/Contrib/apiAnalyticsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -1072,6 +1072,8 @@ class Profile extends Model {
public $id;
public $selfLink;
public $accountId;
public $websiteUrl;
public $eCommerceTracking;
public function setDefaultPage($defaultPage) {
$this->defaultPage = $defaultPage;
}
Expand Down Expand Up @@ -1174,6 +1176,18 @@ public function setAccountId($accountId) {
public function getAccountId() {
return $this->accountId;
}
public function setWebsiteUrl($websiteUrl) {
$this->websiteUrl = $websiteUrl;
}
public function getWebsiteUrl() {
return $this->websiteUrl;
}
public function setECommerceTracking($eCommerceTracking) {
$this->eCommerceTracking = $eCommerceTracking;
}
public function getECommerceTracking() {
return $this->eCommerceTracking;
}
}

class ProfileChildLink extends Model {
Expand Down