@@ -129,6 +129,9 @@ discard block |
||
| 129 | 129 | ); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + /** |
|
| 133 | + * @param string $file |
|
| 134 | + */ |
|
| 132 | 135 | private function getWriteableCacheFile($file) |
| 133 | 136 | { |
| 134 | 137 | return $this->getCacheFile($file, true); |
@@ -139,6 +142,9 @@ discard block |
||
| 139 | 142 | return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
| 140 | 143 | } |
| 141 | 144 | |
| 145 | + /** |
|
| 146 | + * @param boolean $forWrite |
|
| 147 | + */ |
|
| 142 | 148 | private function getCacheDir($file, $forWrite) |
| 143 | 149 | { |
| 144 | 150 | // use the first 2 characters of the hash as a directory prefix |
@@ -157,11 +163,17 @@ discard block |
||
| 157 | 163 | return $storageDir; |
| 158 | 164 | } |
| 159 | 165 | |
| 166 | + /** |
|
| 167 | + * @param string $storageFile |
|
| 168 | + */ |
|
| 160 | 169 | private function acquireReadLock($storageFile) |
| 161 | 170 | { |
| 162 | 171 | return $this->acquireLock(LOCK_SH, $storageFile); |
| 163 | 172 | } |
| 164 | 173 | |
| 174 | + /** |
|
| 175 | + * @param string $storageFile |
|
| 176 | + */ |
|
| 165 | 177 | private function acquireWriteLock($storageFile) |
| 166 | 178 | { |
| 167 | 179 | $rc = $this->acquireLock(LOCK_EX, $storageFile); |
@@ -175,6 +187,9 @@ discard block |
||
| 175 | 187 | return $rc; |
| 176 | 188 | } |
| 177 | 189 | |
| 190 | + /** |
|
| 191 | + * @param integer $type |
|
| 192 | + */ |
|
| 178 | 193 | private function acquireLock($type, $storageFile) |
| 179 | 194 | { |
| 180 | 195 | $mode = $type == LOCK_EX ? "w" : "r"; |
@@ -197,6 +212,9 @@ discard block |
||
| 197 | 212 | return true; |
| 198 | 213 | } |
| 199 | 214 | |
| 215 | + /** |
|
| 216 | + * @param string $storageFile |
|
| 217 | + */ |
|
| 200 | 218 | public function unlock($storageFile) |
| 201 | 219 | { |
| 202 | 220 | if ($this->fh) { |
@@ -40,167 +40,167 @@ |
||
| 40 | 40 | |
| 41 | 41 | public function __construct(Google_Client $client) |
| 42 | 42 | { |
| 43 | - $this->client = $client; |
|
| 44 | - $this->path = $this->client->getClassConfig($this, 'directory'); |
|
| 43 | + $this->client = $client; |
|
| 44 | + $this->path = $this->client->getClassConfig($this, 'directory'); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | public function get($key, $expiration = false) |
| 48 | 48 | { |
| 49 | - $storageFile = $this->getCacheFile($key); |
|
| 50 | - $data = false; |
|
| 51 | - |
|
| 52 | - if (!file_exists($storageFile)) { |
|
| 53 | - $this->client->getLogger()->debug( |
|
| 54 | - 'File cache miss', |
|
| 55 | - array('key' => $key, 'file' => $storageFile) |
|
| 56 | - ); |
|
| 57 | - return false; |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - if ($expiration) { |
|
| 61 | - $mtime = filemtime($storageFile); |
|
| 62 | - if ((time() - $mtime) >= $expiration) { |
|
| 63 | - $this->client->getLogger()->debug( |
|
| 64 | - 'File cache miss (expired)', |
|
| 65 | - array('key' => $key, 'file' => $storageFile) |
|
| 66 | - ); |
|
| 67 | - $this->delete($key); |
|
| 68 | - return false; |
|
| 69 | - } |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - if ($this->acquireReadLock($storageFile)) { |
|
| 73 | - if (filesize($storageFile) > 0) { |
|
| 74 | - $data = fread($this->fh, filesize($storageFile)); |
|
| 75 | - $data = unserialize($data); |
|
| 76 | - } else { |
|
| 77 | - $this->client->getLogger()->debug( |
|
| 78 | - 'Cache file was empty', |
|
| 79 | - array('file' => $storageFile) |
|
| 80 | - ); |
|
| 81 | - } |
|
| 82 | - $this->unlock($storageFile); |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - $this->client->getLogger()->debug( |
|
| 86 | - 'File cache hit', |
|
| 87 | - array('key' => $key, 'file' => $storageFile, 'var' => $data) |
|
| 88 | - ); |
|
| 89 | - |
|
| 90 | - return $data; |
|
| 49 | + $storageFile = $this->getCacheFile($key); |
|
| 50 | + $data = false; |
|
| 51 | + |
|
| 52 | + if (!file_exists($storageFile)) { |
|
| 53 | + $this->client->getLogger()->debug( |
|
| 54 | + 'File cache miss', |
|
| 55 | + array('key' => $key, 'file' => $storageFile) |
|
| 56 | + ); |
|
| 57 | + return false; |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + if ($expiration) { |
|
| 61 | + $mtime = filemtime($storageFile); |
|
| 62 | + if ((time() - $mtime) >= $expiration) { |
|
| 63 | + $this->client->getLogger()->debug( |
|
| 64 | + 'File cache miss (expired)', |
|
| 65 | + array('key' => $key, 'file' => $storageFile) |
|
| 66 | + ); |
|
| 67 | + $this->delete($key); |
|
| 68 | + return false; |
|
| 69 | + } |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + if ($this->acquireReadLock($storageFile)) { |
|
| 73 | + if (filesize($storageFile) > 0) { |
|
| 74 | + $data = fread($this->fh, filesize($storageFile)); |
|
| 75 | + $data = unserialize($data); |
|
| 76 | + } else { |
|
| 77 | + $this->client->getLogger()->debug( |
|
| 78 | + 'Cache file was empty', |
|
| 79 | + array('file' => $storageFile) |
|
| 80 | + ); |
|
| 81 | + } |
|
| 82 | + $this->unlock($storageFile); |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + $this->client->getLogger()->debug( |
|
| 86 | + 'File cache hit', |
|
| 87 | + array('key' => $key, 'file' => $storageFile, 'var' => $data) |
|
| 88 | + ); |
|
| 89 | + |
|
| 90 | + return $data; |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | public function set($key, $value) |
| 94 | 94 | { |
| 95 | - $storageFile = $this->getWriteableCacheFile($key); |
|
| 96 | - if ($this->acquireWriteLock($storageFile)) { |
|
| 97 | - // We serialize the whole request object, since we don't only want the |
|
| 98 | - // responseContent but also the postBody used, headers, size, etc. |
|
| 99 | - $data = serialize($value); |
|
| 100 | - $result = fwrite($this->fh, $data); |
|
| 101 | - $this->unlock($storageFile); |
|
| 102 | - |
|
| 103 | - $this->client->getLogger()->debug( |
|
| 104 | - 'File cache set', |
|
| 105 | - array('key' => $key, 'file' => $storageFile, 'var' => $value) |
|
| 106 | - ); |
|
| 107 | - } else { |
|
| 108 | - $this->client->getLogger()->notice( |
|
| 109 | - 'File cache set failed', |
|
| 110 | - array('key' => $key, 'file' => $storageFile) |
|
| 111 | - ); |
|
| 112 | - } |
|
| 95 | + $storageFile = $this->getWriteableCacheFile($key); |
|
| 96 | + if ($this->acquireWriteLock($storageFile)) { |
|
| 97 | + // We serialize the whole request object, since we don't only want the |
|
| 98 | + // responseContent but also the postBody used, headers, size, etc. |
|
| 99 | + $data = serialize($value); |
|
| 100 | + $result = fwrite($this->fh, $data); |
|
| 101 | + $this->unlock($storageFile); |
|
| 102 | + |
|
| 103 | + $this->client->getLogger()->debug( |
|
| 104 | + 'File cache set', |
|
| 105 | + array('key' => $key, 'file' => $storageFile, 'var' => $value) |
|
| 106 | + ); |
|
| 107 | + } else { |
|
| 108 | + $this->client->getLogger()->notice( |
|
| 109 | + 'File cache set failed', |
|
| 110 | + array('key' => $key, 'file' => $storageFile) |
|
| 111 | + ); |
|
| 112 | + } |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | public function delete($key) |
| 116 | 116 | { |
| 117 | - $file = $this->getCacheFile($key); |
|
| 118 | - if (file_exists($file) && !unlink($file)) { |
|
| 119 | - $this->client->getLogger()->error( |
|
| 120 | - 'File cache delete failed', |
|
| 121 | - array('key' => $key, 'file' => $file) |
|
| 122 | - ); |
|
| 123 | - throw new Google_Cache_Exception("Cache file could not be deleted"); |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - $this->client->getLogger()->debug( |
|
| 127 | - 'File cache delete', |
|
| 128 | - array('key' => $key, 'file' => $file) |
|
| 129 | - ); |
|
| 117 | + $file = $this->getCacheFile($key); |
|
| 118 | + if (file_exists($file) && !unlink($file)) { |
|
| 119 | + $this->client->getLogger()->error( |
|
| 120 | + 'File cache delete failed', |
|
| 121 | + array('key' => $key, 'file' => $file) |
|
| 122 | + ); |
|
| 123 | + throw new Google_Cache_Exception("Cache file could not be deleted"); |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + $this->client->getLogger()->debug( |
|
| 127 | + 'File cache delete', |
|
| 128 | + array('key' => $key, 'file' => $file) |
|
| 129 | + ); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | private function getWriteableCacheFile($file) |
| 133 | 133 | { |
| 134 | - return $this->getCacheFile($file, true); |
|
| 134 | + return $this->getCacheFile($file, true); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | private function getCacheFile($file, $forWrite = false) |
| 138 | 138 | { |
| 139 | - return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 139 | + return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | private function getCacheDir($file, $forWrite) |
| 143 | 143 | { |
| 144 | - // use the first 2 characters of the hash as a directory prefix |
|
| 145 | - // this should prevent slowdowns due to huge directory listings |
|
| 146 | - // and thus give some basic amount of scalability |
|
| 147 | - $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | - if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | - if (! mkdir($storageDir, 0755, true)) { |
|
| 150 | - $this->client->getLogger()->error( |
|
| 151 | - 'File cache creation failed', |
|
| 152 | - array('dir' => $storageDir) |
|
| 153 | - ); |
|
| 154 | - throw new Google_Cache_Exception("Could not create storage directory: $storageDir"); |
|
| 155 | - } |
|
| 156 | - } |
|
| 157 | - return $storageDir; |
|
| 144 | + // use the first 2 characters of the hash as a directory prefix |
|
| 145 | + // this should prevent slowdowns due to huge directory listings |
|
| 146 | + // and thus give some basic amount of scalability |
|
| 147 | + $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | + if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | + if (! mkdir($storageDir, 0755, true)) { |
|
| 150 | + $this->client->getLogger()->error( |
|
| 151 | + 'File cache creation failed', |
|
| 152 | + array('dir' => $storageDir) |
|
| 153 | + ); |
|
| 154 | + throw new Google_Cache_Exception("Could not create storage directory: $storageDir"); |
|
| 155 | + } |
|
| 156 | + } |
|
| 157 | + return $storageDir; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | private function acquireReadLock($storageFile) |
| 161 | 161 | { |
| 162 | - return $this->acquireLock(LOCK_SH, $storageFile); |
|
| 162 | + return $this->acquireLock(LOCK_SH, $storageFile); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | private function acquireWriteLock($storageFile) |
| 166 | 166 | { |
| 167 | - $rc = $this->acquireLock(LOCK_EX, $storageFile); |
|
| 168 | - if (!$rc) { |
|
| 169 | - $this->client->getLogger()->notice( |
|
| 170 | - 'File cache write lock failed', |
|
| 171 | - array('file' => $storageFile) |
|
| 172 | - ); |
|
| 173 | - $this->delete($storageFile); |
|
| 174 | - } |
|
| 175 | - return $rc; |
|
| 167 | + $rc = $this->acquireLock(LOCK_EX, $storageFile); |
|
| 168 | + if (!$rc) { |
|
| 169 | + $this->client->getLogger()->notice( |
|
| 170 | + 'File cache write lock failed', |
|
| 171 | + array('file' => $storageFile) |
|
| 172 | + ); |
|
| 173 | + $this->delete($storageFile); |
|
| 174 | + } |
|
| 175 | + return $rc; |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | private function acquireLock($type, $storageFile) |
| 179 | 179 | { |
| 180 | - $mode = $type == LOCK_EX ? "w" : "r"; |
|
| 181 | - $this->fh = fopen($storageFile, $mode); |
|
| 182 | - if (!$this->fh) { |
|
| 183 | - $this->client->getLogger()->error( |
|
| 184 | - 'Failed to open file during lock acquisition', |
|
| 185 | - array('file' => $storageFile) |
|
| 186 | - ); |
|
| 187 | - return false; |
|
| 188 | - } |
|
| 189 | - $count = 0; |
|
| 190 | - while (!flock($this->fh, $type | LOCK_NB)) { |
|
| 191 | - // Sleep for 10ms. |
|
| 192 | - usleep(10000); |
|
| 193 | - if (++$count < self::MAX_LOCK_RETRIES) { |
|
| 194 | - return false; |
|
| 195 | - } |
|
| 196 | - } |
|
| 197 | - return true; |
|
| 180 | + $mode = $type == LOCK_EX ? "w" : "r"; |
|
| 181 | + $this->fh = fopen($storageFile, $mode); |
|
| 182 | + if (!$this->fh) { |
|
| 183 | + $this->client->getLogger()->error( |
|
| 184 | + 'Failed to open file during lock acquisition', |
|
| 185 | + array('file' => $storageFile) |
|
| 186 | + ); |
|
| 187 | + return false; |
|
| 188 | + } |
|
| 189 | + $count = 0; |
|
| 190 | + while (!flock($this->fh, $type | LOCK_NB)) { |
|
| 191 | + // Sleep for 10ms. |
|
| 192 | + usleep(10000); |
|
| 193 | + if (++$count < self::MAX_LOCK_RETRIES) { |
|
| 194 | + return false; |
|
| 195 | + } |
|
| 196 | + } |
|
| 197 | + return true; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | public function unlock($storageFile) |
| 201 | 201 | { |
| 202 | - if ($this->fh) { |
|
| 203 | - flock($this->fh, LOCK_UN); |
|
| 204 | - } |
|
| 202 | + if ($this->fh) { |
|
| 203 | + flock($this->fh, LOCK_UN); |
|
| 204 | + } |
|
| 205 | 205 | } |
| 206 | 206 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /* |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | if ($this->acquireReadLock($storageFile)) { |
| 73 | 73 | if (filesize($storageFile) > 0) { |
| 74 | 74 | $data = fread($this->fh, filesize($storageFile)); |
| 75 | - $data = unserialize($data); |
|
| 75 | + $data = unserialize($data); |
|
| 76 | 76 | } else { |
| 77 | 77 | $this->client->getLogger()->debug( |
| 78 | 78 | 'Cache file was empty', |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | private function getCacheFile($file, $forWrite = false) |
| 138 | 138 | { |
| 139 | - return $this->getCacheDir($file, $forWrite) . '/' . md5($file); |
|
| 139 | + return $this->getCacheDir($file, $forWrite).'/'.md5($file); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | private function getCacheDir($file, $forWrite) |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | // use the first 2 characters of the hash as a directory prefix |
| 145 | 145 | // this should prevent slowdowns due to huge directory listings |
| 146 | 146 | // and thus give some basic amount of scalability |
| 147 | - $storageDir = $this->path . '/' . substr(md5($file), 0, 2); |
|
| 148 | - if ($forWrite && ! is_dir($storageDir)) { |
|
| 149 | - if (! mkdir($storageDir, 0755, true)) { |
|
| 147 | + $storageDir = $this->path.'/'.substr(md5($file), 0, 2); |
|
| 148 | + if ($forWrite && !is_dir($storageDir)) { |
|
| 149 | + if (!mkdir($storageDir, 0755, true)) { |
|
| 150 | 150 | $this->client->getLogger()->error( |
| 151 | 151 | 'File cache creation failed', |
| 152 | 152 | array('dir' => $storageDir) |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | 193 | * @throws Google_Auth_Exception |
| 194 | - * @return array |
|
| 194 | + * @return string |
|
| 195 | 195 | * @visible For Testing |
| 196 | 196 | */ |
| 197 | 197 | public function prepareScopes() |
@@ -490,7 +490,7 @@ discard block |
||
| 490 | 490 | * @param $audience string the expected consumer of the token |
| 491 | 491 | * @param $issuer string the expected issuer, defaults to Google |
| 492 | 492 | * @param [$max_expiry] the max lifetime of a token, defaults to MAX_TOKEN_LIFETIME_SECS |
| 493 | - * @return mixed token information if valid, false if not |
|
| 493 | + * @return Google_Auth_LoginTicket token information if valid, false if not |
|
| 494 | 494 | */ |
| 495 | 495 | public function verifySignedJwt($id_token, $cert_location, $audience, $issuer, $max_expiry = null) |
| 496 | 496 | { |
@@ -512,6 +512,7 @@ discard block |
||
| 512 | 512 | * Will remove any previously configured scopes. |
| 513 | 513 | * @param array $scopes, ie: array('https://www.googleapis.com/auth/plus.login', |
| 514 | 514 | * 'https://www.googleapis.com/auth/moderator') |
| 515 | + * @param string[] $scopes |
|
| 515 | 516 | */ |
| 516 | 517 | public function setScopes($scopes) |
| 517 | 518 | { |
@@ -74,32 +74,32 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function __construct($config = null) |
| 76 | 76 | { |
| 77 | - if (is_string($config) && strlen($config)) { |
|
| 78 | - $config = new Google_Config($config); |
|
| 79 | - } else if ( !($config instanceof Google_Config)) { |
|
| 80 | - $config = new Google_Config(); |
|
| 77 | + if (is_string($config) && strlen($config)) { |
|
| 78 | + $config = new Google_Config($config); |
|
| 79 | + } else if ( !($config instanceof Google_Config)) { |
|
| 80 | + $config = new Google_Config(); |
|
| 81 | 81 | |
| 82 | - if ($this->isAppEngine()) { |
|
| 83 | - // Automatically use Memcache if we're in AppEngine. |
|
| 84 | - $config->setCacheClass('Google_Cache_Memcache'); |
|
| 85 | - } |
|
| 82 | + if ($this->isAppEngine()) { |
|
| 83 | + // Automatically use Memcache if we're in AppEngine. |
|
| 84 | + $config->setCacheClass('Google_Cache_Memcache'); |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - if (version_compare(phpversion(), "5.3.4", "<=") || $this->isAppEngine()) { |
|
| 88 | - // Automatically disable compress.zlib, as currently unsupported. |
|
| 89 | - $config->setClassConfig('Google_Http_Request', 'disable_gzip', true); |
|
| 90 | - } |
|
| 91 | - } |
|
| 87 | + if (version_compare(phpversion(), "5.3.4", "<=") || $this->isAppEngine()) { |
|
| 88 | + // Automatically disable compress.zlib, as currently unsupported. |
|
| 89 | + $config->setClassConfig('Google_Http_Request', 'disable_gzip', true); |
|
| 90 | + } |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - if ($config->getIoClass() == Google_Config::USE_AUTO_IO_SELECTION) { |
|
| 94 | - if (function_exists('curl_version') && function_exists('curl_exec') |
|
| 95 | - && !$this->isAppEngine()) { |
|
| 96 | - $config->setIoClass("Google_IO_Curl"); |
|
| 97 | - } else { |
|
| 98 | - $config->setIoClass("Google_IO_Stream"); |
|
| 99 | - } |
|
| 100 | - } |
|
| 93 | + if ($config->getIoClass() == Google_Config::USE_AUTO_IO_SELECTION) { |
|
| 94 | + if (function_exists('curl_version') && function_exists('curl_exec') |
|
| 95 | + && !$this->isAppEngine()) { |
|
| 96 | + $config->setIoClass("Google_IO_Curl"); |
|
| 97 | + } else { |
|
| 98 | + $config->setIoClass("Google_IO_Stream"); |
|
| 99 | + } |
|
| 100 | + } |
|
| 101 | 101 | |
| 102 | - $this->config = $config; |
|
| 102 | + $this->config = $config; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function getLibraryVersion() |
| 111 | 111 | { |
| 112 | - return self::LIBVER; |
|
| 112 | + return self::LIBVER; |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | /** |
@@ -124,8 +124,8 @@ discard block |
||
| 124 | 124 | */ |
| 125 | 125 | public function authenticate($code, $crossClient = false) |
| 126 | 126 | { |
| 127 | - $this->authenticated = true; |
|
| 128 | - return $this->getAuth()->authenticate($code, $crossClient); |
|
| 127 | + $this->authenticated = true; |
|
| 128 | + return $this->getAuth()->authenticate($code, $crossClient); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -141,18 +141,18 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function loadServiceAccountJson($jsonLocation, $scopes) |
| 143 | 143 | { |
| 144 | - $data = json_decode(file_get_contents($jsonLocation)); |
|
| 145 | - if (isset($data->type) && $data->type == 'service_account') { |
|
| 146 | - // Service Account format. |
|
| 147 | - $cred = new Google_Auth_AssertionCredentials( |
|
| 148 | - $data->client_email, |
|
| 149 | - $scopes, |
|
| 150 | - $data->private_key |
|
| 151 | - ); |
|
| 152 | - return $cred; |
|
| 153 | - } else { |
|
| 154 | - throw new Google_Exception("Invalid service account JSON file."); |
|
| 155 | - } |
|
| 144 | + $data = json_decode(file_get_contents($jsonLocation)); |
|
| 145 | + if (isset($data->type) && $data->type == 'service_account') { |
|
| 146 | + // Service Account format. |
|
| 147 | + $cred = new Google_Auth_AssertionCredentials( |
|
| 148 | + $data->client_email, |
|
| 149 | + $scopes, |
|
| 150 | + $data->private_key |
|
| 151 | + ); |
|
| 152 | + return $cred; |
|
| 153 | + } else { |
|
| 154 | + throw new Google_Exception("Invalid service account JSON file."); |
|
| 155 | + } |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
@@ -165,16 +165,16 @@ discard block |
||
| 165 | 165 | */ |
| 166 | 166 | public function setAuthConfig($json) |
| 167 | 167 | { |
| 168 | - $data = json_decode($json); |
|
| 169 | - $key = isset($data->installed) ? 'installed' : 'web'; |
|
| 170 | - if (!isset($data->$key)) { |
|
| 171 | - throw new Google_Exception("Invalid client secret JSON file."); |
|
| 172 | - } |
|
| 173 | - $this->setClientId($data->$key->client_id); |
|
| 174 | - $this->setClientSecret($data->$key->client_secret); |
|
| 175 | - if (isset($data->$key->redirect_uris)) { |
|
| 176 | - $this->setRedirectUri($data->$key->redirect_uris[0]); |
|
| 177 | - } |
|
| 168 | + $data = json_decode($json); |
|
| 169 | + $key = isset($data->installed) ? 'installed' : 'web'; |
|
| 170 | + if (!isset($data->$key)) { |
|
| 171 | + throw new Google_Exception("Invalid client secret JSON file."); |
|
| 172 | + } |
|
| 173 | + $this->setClientId($data->$key->client_id); |
|
| 174 | + $this->setClientSecret($data->$key->client_secret); |
|
| 175 | + if (isset($data->$key->redirect_uris)) { |
|
| 176 | + $this->setRedirectUri($data->$key->redirect_uris[0]); |
|
| 177 | + } |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | /** |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | */ |
| 187 | 187 | public function setAuthConfigFile($file) |
| 188 | 188 | { |
| 189 | - $this->setAuthConfig(file_get_contents($file)); |
|
| 189 | + $this->setAuthConfig(file_get_contents($file)); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -196,11 +196,11 @@ discard block |
||
| 196 | 196 | */ |
| 197 | 197 | public function prepareScopes() |
| 198 | 198 | { |
| 199 | - if (empty($this->requestedScopes)) { |
|
| 200 | - throw new Google_Auth_Exception("No scopes specified"); |
|
| 201 | - } |
|
| 202 | - $scopes = implode(' ', $this->requestedScopes); |
|
| 203 | - return $scopes; |
|
| 199 | + if (empty($this->requestedScopes)) { |
|
| 200 | + throw new Google_Auth_Exception("No scopes specified"); |
|
| 201 | + } |
|
| 202 | + $scopes = implode(' ', $this->requestedScopes); |
|
| 203 | + return $scopes; |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
@@ -212,10 +212,10 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | public function setAccessToken($accessToken) |
| 214 | 214 | { |
| 215 | - if ($accessToken == 'null') { |
|
| 216 | - $accessToken = null; |
|
| 217 | - } |
|
| 218 | - $this->getAuth()->setAccessToken($accessToken); |
|
| 215 | + if ($accessToken == 'null') { |
|
| 216 | + $accessToken = null; |
|
| 217 | + } |
|
| 218 | + $this->getAuth()->setAccessToken($accessToken); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | |
@@ -226,8 +226,8 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | public function setAuth(Google_Auth_Abstract $auth) |
| 228 | 228 | { |
| 229 | - $this->config->setAuthClass(get_class($auth)); |
|
| 230 | - $this->auth = $auth; |
|
| 229 | + $this->config->setAuthClass(get_class($auth)); |
|
| 230 | + $this->auth = $auth; |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -236,8 +236,8 @@ discard block |
||
| 236 | 236 | */ |
| 237 | 237 | public function setIo(Google_IO_Abstract $io) |
| 238 | 238 | { |
| 239 | - $this->config->setIoClass(get_class($io)); |
|
| 240 | - $this->io = $io; |
|
| 239 | + $this->config->setIoClass(get_class($io)); |
|
| 240 | + $this->io = $io; |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | /** |
@@ -246,8 +246,8 @@ discard block |
||
| 246 | 246 | */ |
| 247 | 247 | public function setCache(Google_Cache_Abstract $cache) |
| 248 | 248 | { |
| 249 | - $this->config->setCacheClass(get_class($cache)); |
|
| 250 | - $this->cache = $cache; |
|
| 249 | + $this->config->setCacheClass(get_class($cache)); |
|
| 250 | + $this->cache = $cache; |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | /** |
@@ -256,8 +256,8 @@ discard block |
||
| 256 | 256 | */ |
| 257 | 257 | public function setLogger(Google_Logger_Abstract $logger) |
| 258 | 258 | { |
| 259 | - $this->config->setLoggerClass(get_class($logger)); |
|
| 260 | - $this->logger = $logger; |
|
| 259 | + $this->config->setLoggerClass(get_class($logger)); |
|
| 260 | + $this->logger = $logger; |
|
| 261 | 261 | } |
| 262 | 262 | |
| 263 | 263 | /** |
@@ -266,8 +266,8 @@ discard block |
||
| 266 | 266 | */ |
| 267 | 267 | public function createAuthUrl() |
| 268 | 268 | { |
| 269 | - $scopes = $this->prepareScopes(); |
|
| 270 | - return $this->getAuth()->createAuthUrl($scopes); |
|
| 269 | + $scopes = $this->prepareScopes(); |
|
| 270 | + return $this->getAuth()->createAuthUrl($scopes); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -278,11 +278,11 @@ discard block |
||
| 278 | 278 | */ |
| 279 | 279 | public function getAccessToken() |
| 280 | 280 | { |
| 281 | - $token = $this->getAuth()->getAccessToken(); |
|
| 282 | - // The response is json encoded, so could be the string null. |
|
| 283 | - // It is arguable whether this check should be here or lower |
|
| 284 | - // in the library. |
|
| 285 | - return (null == $token || 'null' == $token || '[]' == $token) ? null : $token; |
|
| 281 | + $token = $this->getAuth()->getAccessToken(); |
|
| 282 | + // The response is json encoded, so could be the string null. |
|
| 283 | + // It is arguable whether this check should be here or lower |
|
| 284 | + // in the library. |
|
| 285 | + return (null == $token || 'null' == $token || '[]' == $token) ? null : $token; |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | /** |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | */ |
| 292 | 292 | public function getRefreshToken() |
| 293 | 293 | { |
| 294 | - return $this->getAuth()->getRefreshToken(); |
|
| 294 | + return $this->getAuth()->getRefreshToken(); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | */ |
| 301 | 301 | public function isAccessTokenExpired() |
| 302 | 302 | { |
| 303 | - return $this->getAuth()->isAccessTokenExpired(); |
|
| 303 | + return $this->getAuth()->isAccessTokenExpired(); |
|
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | /** |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | */ |
| 311 | 311 | public function setState($state) |
| 312 | 312 | { |
| 313 | - $this->getAuth()->setState($state); |
|
| 313 | + $this->getAuth()->setState($state); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | */ |
| 321 | 321 | public function setAccessType($accessType) |
| 322 | 322 | { |
| 323 | - $this->config->setAccessType($accessType); |
|
| 323 | + $this->config->setAccessType($accessType); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | /** |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | */ |
| 331 | 331 | public function setApprovalPrompt($approvalPrompt) |
| 332 | 332 | { |
| 333 | - $this->config->setApprovalPrompt($approvalPrompt); |
|
| 333 | + $this->config->setApprovalPrompt($approvalPrompt); |
|
| 334 | 334 | } |
| 335 | 335 | |
| 336 | 336 | /** |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | */ |
| 340 | 340 | public function setLoginHint($loginHint) |
| 341 | 341 | { |
| 342 | - $this->config->setLoginHint($loginHint); |
|
| 342 | + $this->config->setLoginHint($loginHint); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | /** |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | */ |
| 349 | 349 | public function setApplicationName($applicationName) |
| 350 | 350 | { |
| 351 | - $this->config->setApplicationName($applicationName); |
|
| 351 | + $this->config->setApplicationName($applicationName); |
|
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | /** |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | */ |
| 358 | 358 | public function setClientId($clientId) |
| 359 | 359 | { |
| 360 | - $this->config->setClientId($clientId); |
|
| 360 | + $this->config->setClientId($clientId); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | /** |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | */ |
| 367 | 367 | public function setClientSecret($clientSecret) |
| 368 | 368 | { |
| 369 | - $this->config->setClientSecret($clientSecret); |
|
| 369 | + $this->config->setClientSecret($clientSecret); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | /** |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | */ |
| 376 | 376 | public function setRedirectUri($redirectUri) |
| 377 | 377 | { |
| 378 | - $this->config->setRedirectUri($redirectUri); |
|
| 378 | + $this->config->setRedirectUri($redirectUri); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | /** |
@@ -388,10 +388,10 @@ discard block |
||
| 388 | 388 | */ |
| 389 | 389 | public function setRequestVisibleActions($requestVisibleActions) |
| 390 | 390 | { |
| 391 | - if (is_array($requestVisibleActions)) { |
|
| 392 | - $requestVisibleActions = join(" ", $requestVisibleActions); |
|
| 393 | - } |
|
| 394 | - $this->config->setRequestVisibleActions($requestVisibleActions); |
|
| 391 | + if (is_array($requestVisibleActions)) { |
|
| 392 | + $requestVisibleActions = join(" ", $requestVisibleActions); |
|
| 393 | + } |
|
| 394 | + $this->config->setRequestVisibleActions($requestVisibleActions); |
|
| 395 | 395 | } |
| 396 | 396 | |
| 397 | 397 | /** |
@@ -401,7 +401,7 @@ discard block |
||
| 401 | 401 | */ |
| 402 | 402 | public function setDeveloperKey($developerKey) |
| 403 | 403 | { |
| 404 | - $this->config->setDeveloperKey($developerKey); |
|
| 404 | + $this->config->setDeveloperKey($developerKey); |
|
| 405 | 405 | } |
| 406 | 406 | |
| 407 | 407 | /** |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | */ |
| 413 | 413 | public function setHostedDomain($hd) |
| 414 | 414 | { |
| 415 | - $this->config->setHostedDomain($hd); |
|
| 415 | + $this->config->setHostedDomain($hd); |
|
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | /** |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | */ |
| 424 | 424 | public function setPrompt($prompt) |
| 425 | 425 | { |
| 426 | - $this->config->setPrompt($prompt); |
|
| 426 | + $this->config->setPrompt($prompt); |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | /** |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | */ |
| 435 | 435 | public function setOpenidRealm($realm) |
| 436 | 436 | { |
| 437 | - $this->config->setOpenidRealm($realm); |
|
| 437 | + $this->config->setOpenidRealm($realm); |
|
| 438 | 438 | } |
| 439 | 439 | |
| 440 | 440 | /** |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | */ |
| 446 | 446 | public function setIncludeGrantedScopes($include) |
| 447 | 447 | { |
| 448 | - $this->config->setIncludeGrantedScopes($include); |
|
| 448 | + $this->config->setIncludeGrantedScopes($include); |
|
| 449 | 449 | } |
| 450 | 450 | |
| 451 | 451 | /** |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | */ |
| 455 | 455 | public function refreshToken($refreshToken) |
| 456 | 456 | { |
| 457 | - $this->getAuth()->refreshToken($refreshToken); |
|
| 457 | + $this->getAuth()->refreshToken($refreshToken); |
|
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | /** |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | */ |
| 467 | 467 | public function revokeToken($token = null) |
| 468 | 468 | { |
| 469 | - return $this->getAuth()->revokeToken($token); |
|
| 469 | + return $this->getAuth()->revokeToken($token); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | /** |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | */ |
| 480 | 480 | public function verifyIdToken($token = null) |
| 481 | 481 | { |
| 482 | - return $this->getAuth()->verifyIdToken($token); |
|
| 482 | + return $this->getAuth()->verifyIdToken($token); |
|
| 483 | 483 | } |
| 484 | 484 | |
| 485 | 485 | /** |
@@ -494,9 +494,9 @@ discard block |
||
| 494 | 494 | */ |
| 495 | 495 | public function verifySignedJwt($id_token, $cert_location, $audience, $issuer, $max_expiry = null) |
| 496 | 496 | { |
| 497 | - $auth = new Google_Auth_OAuth2($this); |
|
| 498 | - $certs = $auth->retrieveCertsFromLocation($cert_location); |
|
| 499 | - return $auth->verifySignedJwtWithCerts($id_token, $certs, $audience, $issuer, $max_expiry); |
|
| 497 | + $auth = new Google_Auth_OAuth2($this); |
|
| 498 | + $certs = $auth->retrieveCertsFromLocation($cert_location); |
|
| 499 | + return $auth->verifySignedJwtWithCerts($id_token, $certs, $audience, $issuer, $max_expiry); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | 502 | /** |
@@ -504,7 +504,7 @@ discard block |
||
| 504 | 504 | */ |
| 505 | 505 | public function setAssertionCredentials(Google_Auth_AssertionCredentials $creds) |
| 506 | 506 | { |
| 507 | - $this->getAuth()->setAssertionCredentials($creds); |
|
| 507 | + $this->getAuth()->setAssertionCredentials($creds); |
|
| 508 | 508 | } |
| 509 | 509 | |
| 510 | 510 | /** |
@@ -515,8 +515,8 @@ discard block |
||
| 515 | 515 | */ |
| 516 | 516 | public function setScopes($scopes) |
| 517 | 517 | { |
| 518 | - $this->requestedScopes = array(); |
|
| 519 | - $this->addScope($scopes); |
|
| 518 | + $this->requestedScopes = array(); |
|
| 519 | + $this->addScope($scopes); |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | 522 | /** |
@@ -528,13 +528,13 @@ discard block |
||
| 528 | 528 | */ |
| 529 | 529 | public function addScope($scope_or_scopes) |
| 530 | 530 | { |
| 531 | - if (is_string($scope_or_scopes) && !in_array($scope_or_scopes, $this->requestedScopes)) { |
|
| 532 | - $this->requestedScopes[] = $scope_or_scopes; |
|
| 533 | - } else if (is_array($scope_or_scopes)) { |
|
| 534 | - foreach ($scope_or_scopes as $scope) { |
|
| 535 | - $this->addScope($scope); |
|
| 536 | - } |
|
| 537 | - } |
|
| 531 | + if (is_string($scope_or_scopes) && !in_array($scope_or_scopes, $this->requestedScopes)) { |
|
| 532 | + $this->requestedScopes[] = $scope_or_scopes; |
|
| 533 | + } else if (is_array($scope_or_scopes)) { |
|
| 534 | + foreach ($scope_or_scopes as $scope) { |
|
| 535 | + $this->addScope($scope); |
|
| 536 | + } |
|
| 537 | + } |
|
| 538 | 538 | } |
| 539 | 539 | |
| 540 | 540 | /** |
@@ -544,7 +544,7 @@ discard block |
||
| 544 | 544 | */ |
| 545 | 545 | public function getScopes() |
| 546 | 546 | { |
| 547 | - return $this->requestedScopes; |
|
| 547 | + return $this->requestedScopes; |
|
| 548 | 548 | } |
| 549 | 549 | |
| 550 | 550 | /** |
@@ -556,8 +556,8 @@ discard block |
||
| 556 | 556 | */ |
| 557 | 557 | public function setUseBatch($useBatch) |
| 558 | 558 | { |
| 559 | - // This is actually an alias for setDefer. |
|
| 560 | - $this->setDefer($useBatch); |
|
| 559 | + // This is actually an alias for setDefer. |
|
| 560 | + $this->setDefer($useBatch); |
|
| 561 | 561 | } |
| 562 | 562 | |
| 563 | 563 | /** |
@@ -568,7 +568,7 @@ discard block |
||
| 568 | 568 | */ |
| 569 | 569 | public function setDefer($defer) |
| 570 | 570 | { |
| 571 | - $this->deferExecution = $defer; |
|
| 571 | + $this->deferExecution = $defer; |
|
| 572 | 572 | } |
| 573 | 573 | |
| 574 | 574 | /** |
@@ -580,22 +580,22 @@ discard block |
||
| 580 | 580 | */ |
| 581 | 581 | public function execute($request) |
| 582 | 582 | { |
| 583 | - if ($request instanceof Google_Http_Request) { |
|
| 584 | - $request->setUserAgent( |
|
| 585 | - $this->getApplicationName() |
|
| 586 | - . " " . self::USER_AGENT_SUFFIX |
|
| 587 | - . $this->getLibraryVersion() |
|
| 588 | - ); |
|
| 589 | - if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) { |
|
| 590 | - $request->enableGzip(); |
|
| 591 | - } |
|
| 592 | - $request->maybeMoveParametersToBody(); |
|
| 593 | - return Google_Http_REST::execute($this, $request); |
|
| 594 | - } else if ($request instanceof Google_Http_Batch) { |
|
| 595 | - return $request->execute(); |
|
| 596 | - } else { |
|
| 597 | - throw new Google_Exception("Do not know how to execute this type of object."); |
|
| 598 | - } |
|
| 583 | + if ($request instanceof Google_Http_Request) { |
|
| 584 | + $request->setUserAgent( |
|
| 585 | + $this->getApplicationName() |
|
| 586 | + . " " . self::USER_AGENT_SUFFIX |
|
| 587 | + . $this->getLibraryVersion() |
|
| 588 | + ); |
|
| 589 | + if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) { |
|
| 590 | + $request->enableGzip(); |
|
| 591 | + } |
|
| 592 | + $request->maybeMoveParametersToBody(); |
|
| 593 | + return Google_Http_REST::execute($this, $request); |
|
| 594 | + } else if ($request instanceof Google_Http_Batch) { |
|
| 595 | + return $request->execute(); |
|
| 596 | + } else { |
|
| 597 | + throw new Google_Exception("Do not know how to execute this type of object."); |
|
| 598 | + } |
|
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | /** |
@@ -604,7 +604,7 @@ discard block |
||
| 604 | 604 | */ |
| 605 | 605 | public function shouldDefer() |
| 606 | 606 | { |
| 607 | - return $this->deferExecution; |
|
| 607 | + return $this->deferExecution; |
|
| 608 | 608 | } |
| 609 | 609 | |
| 610 | 610 | /** |
@@ -612,11 +612,11 @@ discard block |
||
| 612 | 612 | */ |
| 613 | 613 | public function getAuth() |
| 614 | 614 | { |
| 615 | - if (!isset($this->auth)) { |
|
| 616 | - $class = $this->config->getAuthClass(); |
|
| 617 | - $this->auth = new $class($this); |
|
| 618 | - } |
|
| 619 | - return $this->auth; |
|
| 615 | + if (!isset($this->auth)) { |
|
| 616 | + $class = $this->config->getAuthClass(); |
|
| 617 | + $this->auth = new $class($this); |
|
| 618 | + } |
|
| 619 | + return $this->auth; |
|
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | /** |
@@ -624,11 +624,11 @@ discard block |
||
| 624 | 624 | */ |
| 625 | 625 | public function getIo() |
| 626 | 626 | { |
| 627 | - if (!isset($this->io)) { |
|
| 628 | - $class = $this->config->getIoClass(); |
|
| 629 | - $this->io = new $class($this); |
|
| 630 | - } |
|
| 631 | - return $this->io; |
|
| 627 | + if (!isset($this->io)) { |
|
| 628 | + $class = $this->config->getIoClass(); |
|
| 629 | + $this->io = new $class($this); |
|
| 630 | + } |
|
| 631 | + return $this->io; |
|
| 632 | 632 | } |
| 633 | 633 | |
| 634 | 634 | /** |
@@ -636,11 +636,11 @@ discard block |
||
| 636 | 636 | */ |
| 637 | 637 | public function getCache() |
| 638 | 638 | { |
| 639 | - if (!isset($this->cache)) { |
|
| 640 | - $class = $this->config->getCacheClass(); |
|
| 641 | - $this->cache = new $class($this); |
|
| 642 | - } |
|
| 643 | - return $this->cache; |
|
| 639 | + if (!isset($this->cache)) { |
|
| 640 | + $class = $this->config->getCacheClass(); |
|
| 641 | + $this->cache = new $class($this); |
|
| 642 | + } |
|
| 643 | + return $this->cache; |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | /** |
@@ -648,11 +648,11 @@ discard block |
||
| 648 | 648 | */ |
| 649 | 649 | public function getLogger() |
| 650 | 650 | { |
| 651 | - if (!isset($this->logger)) { |
|
| 652 | - $class = $this->config->getLoggerClass(); |
|
| 653 | - $this->logger = new $class($this); |
|
| 654 | - } |
|
| 655 | - return $this->logger; |
|
| 651 | + if (!isset($this->logger)) { |
|
| 652 | + $class = $this->config->getLoggerClass(); |
|
| 653 | + $this->logger = new $class($this); |
|
| 654 | + } |
|
| 655 | + return $this->logger; |
|
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | /** |
@@ -663,10 +663,10 @@ discard block |
||
| 663 | 663 | */ |
| 664 | 664 | public function getClassConfig($class, $key = null) |
| 665 | 665 | { |
| 666 | - if (!is_string($class)) { |
|
| 667 | - $class = get_class($class); |
|
| 668 | - } |
|
| 669 | - return $this->config->getClassConfig($class, $key); |
|
| 666 | + if (!is_string($class)) { |
|
| 667 | + $class = get_class($class); |
|
| 668 | + } |
|
| 669 | + return $this->config->getClassConfig($class, $key); |
|
| 670 | 670 | } |
| 671 | 671 | |
| 672 | 672 | /** |
@@ -680,10 +680,10 @@ discard block |
||
| 680 | 680 | */ |
| 681 | 681 | public function setClassConfig($class, $config, $value = null) |
| 682 | 682 | { |
| 683 | - if (!is_string($class)) { |
|
| 684 | - $class = get_class($class); |
|
| 685 | - } |
|
| 686 | - $this->config->setClassConfig($class, $config, $value); |
|
| 683 | + if (!is_string($class)) { |
|
| 684 | + $class = get_class($class); |
|
| 685 | + } |
|
| 686 | + $this->config->setClassConfig($class, $config, $value); |
|
| 687 | 687 | |
| 688 | 688 | } |
| 689 | 689 | |
@@ -692,7 +692,7 @@ discard block |
||
| 692 | 692 | */ |
| 693 | 693 | public function getBasePath() |
| 694 | 694 | { |
| 695 | - return $this->config->getBasePath(); |
|
| 695 | + return $this->config->getBasePath(); |
|
| 696 | 696 | } |
| 697 | 697 | |
| 698 | 698 | /** |
@@ -700,7 +700,7 @@ discard block |
||
| 700 | 700 | */ |
| 701 | 701 | public function getApplicationName() |
| 702 | 702 | { |
| 703 | - return $this->config->getApplicationName(); |
|
| 703 | + return $this->config->getApplicationName(); |
|
| 704 | 704 | } |
| 705 | 705 | |
| 706 | 706 | /** |
@@ -709,7 +709,7 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | public function isAppEngine() |
| 711 | 711 | { |
| 712 | - return (isset($_SERVER['SERVER_SOFTWARE']) && |
|
| 713 | - strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false); |
|
| 712 | + return (isset($_SERVER['SERVER_SOFTWARE']) && |
|
| 713 | + strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false); |
|
| 714 | 714 | } |
| 715 | 715 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | { |
| 77 | 77 | if (is_string($config) && strlen($config)) { |
| 78 | 78 | $config = new Google_Config($config); |
| 79 | - } else if ( !($config instanceof Google_Config)) { |
|
| 79 | + } else if (!($config instanceof Google_Config)) { |
|
| 80 | 80 | $config = new Google_Config(); |
| 81 | 81 | |
| 82 | 82 | if ($this->isAppEngine()) { |
@@ -583,7 +583,7 @@ discard block |
||
| 583 | 583 | if ($request instanceof Google_Http_Request) { |
| 584 | 584 | $request->setUserAgent( |
| 585 | 585 | $this->getApplicationName() |
| 586 | - . " " . self::USER_AGENT_SUFFIX |
|
| 586 | + . " ".self::USER_AGENT_SUFFIX |
|
| 587 | 587 | . $this->getLibraryVersion() |
| 588 | 588 | ); |
| 589 | 589 | if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) { |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | 81 | * Set the base URL that path and query parameters will be added to. |
| 82 | - * @param $baseComponent string |
|
| 82 | + * @param string $baseComponent string |
|
| 83 | 83 | */ |
| 84 | 84 | public function setBaseComponent($baseComponent) |
| 85 | 85 | { |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | 134 | * Set a new query parameter. |
| 135 | - * @param $key - string to set, does not need to be URL encoded |
|
| 135 | + * @param string $key - string to set, does not need to be URL encoded |
|
| 136 | 136 | * @param $value - string to set, does not need to be URL encoded |
| 137 | 137 | */ |
| 138 | 138 | public function setQueryParam($key, $value) |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
| 144 | - * @return string HTTP Response Code. |
|
| 144 | + * @return integer HTTP Response Code. |
|
| 145 | 145 | */ |
| 146 | 146 | public function getResponseHttpCode() |
| 147 | 147 | { |
@@ -32,9 +32,9 @@ discard block |
||
| 32 | 32 | const GZIP_UA = " (gzip)"; |
| 33 | 33 | |
| 34 | 34 | private $batchHeaders = array( |
| 35 | - 'Content-Type' => 'application/http', |
|
| 36 | - 'Content-Transfer-Encoding' => 'binary', |
|
| 37 | - 'MIME-Version' => '1.0', |
|
| 35 | + 'Content-Type' => 'application/http', |
|
| 36 | + 'Content-Transfer-Encoding' => 'binary', |
|
| 37 | + 'MIME-Version' => '1.0', |
|
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | 40 | protected $queryParams; |
@@ -56,15 +56,15 @@ discard block |
||
| 56 | 56 | public $accessKey; |
| 57 | 57 | |
| 58 | 58 | public function __construct( |
| 59 | - $url, |
|
| 60 | - $method = 'GET', |
|
| 61 | - $headers = array(), |
|
| 62 | - $postBody = null |
|
| 59 | + $url, |
|
| 60 | + $method = 'GET', |
|
| 61 | + $headers = array(), |
|
| 62 | + $postBody = null |
|
| 63 | 63 | ) { |
| 64 | - $this->setUrl($url); |
|
| 65 | - $this->setRequestMethod($method); |
|
| 66 | - $this->setRequestHeaders($headers); |
|
| 67 | - $this->setPostBody($postBody); |
|
| 64 | + $this->setUrl($url); |
|
| 65 | + $this->setRequestMethod($method); |
|
| 66 | + $this->setRequestHeaders($headers); |
|
| 67 | + $this->setPostBody($postBody); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function getBaseComponent() |
| 76 | 76 | { |
| 77 | - return $this->baseComponent; |
|
| 77 | + return $this->baseComponent; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | public function setBaseComponent($baseComponent) |
| 85 | 85 | { |
| 86 | - $this->baseComponent = rtrim($baseComponent, '/'); |
|
| 86 | + $this->baseComponent = rtrim($baseComponent, '/'); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public function enableGzip() |
| 93 | 93 | { |
| 94 | - $this->setRequestHeaders(array("Accept-Encoding" => "gzip")); |
|
| 95 | - $this->canGzip = true; |
|
| 96 | - $this->setUserAgent($this->userAgent); |
|
| 94 | + $this->setRequestHeaders(array("Accept-Encoding" => "gzip")); |
|
| 95 | + $this->canGzip = true; |
|
| 96 | + $this->setUserAgent($this->userAgent); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -101,14 +101,14 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | public function disableGzip() |
| 103 | 103 | { |
| 104 | - if ( |
|
| 105 | - isset($this->requestHeaders['accept-encoding']) && |
|
| 106 | - $this->requestHeaders['accept-encoding'] == "gzip" |
|
| 107 | - ) { |
|
| 108 | - unset($this->requestHeaders['accept-encoding']); |
|
| 109 | - } |
|
| 110 | - $this->canGzip = false; |
|
| 111 | - $this->userAgent = str_replace(self::GZIP_UA, "", $this->userAgent); |
|
| 104 | + if ( |
|
| 105 | + isset($this->requestHeaders['accept-encoding']) && |
|
| 106 | + $this->requestHeaders['accept-encoding'] == "gzip" |
|
| 107 | + ) { |
|
| 108 | + unset($this->requestHeaders['accept-encoding']); |
|
| 109 | + } |
|
| 110 | + $this->canGzip = false; |
|
| 111 | + $this->userAgent = str_replace(self::GZIP_UA, "", $this->userAgent); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | public function canGzip() |
| 119 | 119 | { |
| 120 | - return $this->canGzip; |
|
| 120 | + return $this->canGzip; |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | public function getQueryParams() |
| 129 | 129 | { |
| 130 | - return $this->queryParams; |
|
| 130 | + return $this->queryParams; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | */ |
| 138 | 138 | public function setQueryParam($key, $value) |
| 139 | 139 | { |
| 140 | - $this->queryParams[$key] = $value; |
|
| 140 | + $this->queryParams[$key] = $value; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | public function getResponseHttpCode() |
| 147 | 147 | { |
| 148 | - return (int) $this->responseHttpCode; |
|
| 148 | + return (int) $this->responseHttpCode; |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | public function setResponseHttpCode($responseHttpCode) |
| 155 | 155 | { |
| 156 | - $this->responseHttpCode = $responseHttpCode; |
|
| 156 | + $this->responseHttpCode = $responseHttpCode; |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function getResponseHeaders() |
| 163 | 163 | { |
| 164 | - return $this->responseHeaders; |
|
| 164 | + return $this->responseHeaders; |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | /** |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | */ |
| 170 | 170 | public function getResponseBody() |
| 171 | 171 | { |
| 172 | - return $this->responseBody; |
|
| 172 | + return $this->responseBody; |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | /** |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | */ |
| 180 | 180 | public function setExpectedClass($class) |
| 181 | 181 | { |
| 182 | - $this->expectedClass = $class; |
|
| 182 | + $this->expectedClass = $class; |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | */ |
| 189 | 189 | public function getExpectedClass() |
| 190 | 190 | { |
| 191 | - return $this->expectedClass; |
|
| 191 | + return $this->expectedClass; |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | /** |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | */ |
| 197 | 197 | public function enableExpectedRaw() |
| 198 | 198 | { |
| 199 | - $this->expectedRaw = true; |
|
| 199 | + $this->expectedRaw = true; |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | /** |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | */ |
| 205 | 205 | public function disableExpectedRaw() |
| 206 | 206 | { |
| 207 | - $this->expectedRaw = false; |
|
| 207 | + $this->expectedRaw = false; |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | */ |
| 214 | 214 | public function getExpectedRaw() |
| 215 | 215 | { |
| 216 | - return $this->expectedRaw; |
|
| 216 | + return $this->expectedRaw; |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | /** |
@@ -222,12 +222,12 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | public function setResponseHeaders($headers) |
| 224 | 224 | { |
| 225 | - $headers = Google_Utils::normalize($headers); |
|
| 226 | - if ($this->responseHeaders) { |
|
| 227 | - $headers = array_merge($this->responseHeaders, $headers); |
|
| 228 | - } |
|
| 225 | + $headers = Google_Utils::normalize($headers); |
|
| 226 | + if ($this->responseHeaders) { |
|
| 227 | + $headers = array_merge($this->responseHeaders, $headers); |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - $this->responseHeaders = $headers; |
|
| 230 | + $this->responseHeaders = $headers; |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -237,9 +237,9 @@ discard block |
||
| 237 | 237 | */ |
| 238 | 238 | public function getResponseHeader($key) |
| 239 | 239 | { |
| 240 | - return isset($this->responseHeaders[$key]) |
|
| 241 | - ? $this->responseHeaders[$key] |
|
| 242 | - : false; |
|
| 240 | + return isset($this->responseHeaders[$key]) |
|
| 241 | + ? $this->responseHeaders[$key] |
|
| 242 | + : false; |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | */ |
| 248 | 248 | public function setResponseBody($responseBody) |
| 249 | 249 | { |
| 250 | - $this->responseBody = $responseBody; |
|
| 250 | + $this->responseBody = $responseBody; |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | /** |
@@ -255,10 +255,10 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | public function getUrl() |
| 257 | 257 | { |
| 258 | - return $this->baseComponent . $this->path . |
|
| 259 | - (count($this->queryParams) ? |
|
| 260 | - "?" . $this->buildQuery($this->queryParams) : |
|
| 261 | - ''); |
|
| 258 | + return $this->baseComponent . $this->path . |
|
| 259 | + (count($this->queryParams) ? |
|
| 260 | + "?" . $this->buildQuery($this->queryParams) : |
|
| 261 | + ''); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | */ |
| 267 | 267 | public function getRequestMethod() |
| 268 | 268 | { |
| 269 | - return $this->requestMethod; |
|
| 269 | + return $this->requestMethod; |
|
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | /** |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | */ |
| 275 | 275 | public function getRequestHeaders() |
| 276 | 276 | { |
| 277 | - return $this->requestHeaders; |
|
| 277 | + return $this->requestHeaders; |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | /** |
@@ -284,9 +284,9 @@ discard block |
||
| 284 | 284 | */ |
| 285 | 285 | public function getRequestHeader($key) |
| 286 | 286 | { |
| 287 | - return isset($this->requestHeaders[$key]) |
|
| 288 | - ? $this->requestHeaders[$key] |
|
| 289 | - : false; |
|
| 287 | + return isset($this->requestHeaders[$key]) |
|
| 288 | + ? $this->requestHeaders[$key] |
|
| 289 | + : false; |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | /** |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | */ |
| 295 | 295 | public function getPostBody() |
| 296 | 296 | { |
| 297 | - return $this->postBody; |
|
| 297 | + return $this->postBody; |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** |
@@ -302,26 +302,26 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | public function setUrl($url) |
| 304 | 304 | { |
| 305 | - if (substr($url, 0, 4) != 'http') { |
|
| 306 | - // Force the path become relative. |
|
| 307 | - if (substr($url, 0, 1) !== '/') { |
|
| 308 | - $url = '/' . $url; |
|
| 309 | - } |
|
| 310 | - } |
|
| 311 | - $parts = parse_url($url); |
|
| 312 | - if (isset($parts['host'])) { |
|
| 313 | - $this->baseComponent = sprintf( |
|
| 314 | - "%s%s%s", |
|
| 315 | - isset($parts['scheme']) ? $parts['scheme'] . "://" : '', |
|
| 316 | - isset($parts['host']) ? $parts['host'] : '', |
|
| 317 | - isset($parts['port']) ? ":" . $parts['port'] : '' |
|
| 318 | - ); |
|
| 319 | - } |
|
| 320 | - $this->path = isset($parts['path']) ? $parts['path'] : ''; |
|
| 321 | - $this->queryParams = array(); |
|
| 322 | - if (isset($parts['query'])) { |
|
| 323 | - $this->queryParams = $this->parseQuery($parts['query']); |
|
| 324 | - } |
|
| 305 | + if (substr($url, 0, 4) != 'http') { |
|
| 306 | + // Force the path become relative. |
|
| 307 | + if (substr($url, 0, 1) !== '/') { |
|
| 308 | + $url = '/' . $url; |
|
| 309 | + } |
|
| 310 | + } |
|
| 311 | + $parts = parse_url($url); |
|
| 312 | + if (isset($parts['host'])) { |
|
| 313 | + $this->baseComponent = sprintf( |
|
| 314 | + "%s%s%s", |
|
| 315 | + isset($parts['scheme']) ? $parts['scheme'] . "://" : '', |
|
| 316 | + isset($parts['host']) ? $parts['host'] : '', |
|
| 317 | + isset($parts['port']) ? ":" . $parts['port'] : '' |
|
| 318 | + ); |
|
| 319 | + } |
|
| 320 | + $this->path = isset($parts['path']) ? $parts['path'] : ''; |
|
| 321 | + $this->queryParams = array(); |
|
| 322 | + if (isset($parts['query'])) { |
|
| 323 | + $this->queryParams = $this->parseQuery($parts['query']); |
|
| 324 | + } |
|
| 325 | 325 | } |
| 326 | 326 | |
| 327 | 327 | /** |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | */ |
| 332 | 332 | public function setRequestMethod($method) |
| 333 | 333 | { |
| 334 | - $this->requestMethod = strtoupper($method); |
|
| 334 | + $this->requestMethod = strtoupper($method); |
|
| 335 | 335 | } |
| 336 | 336 | |
| 337 | 337 | /** |
@@ -340,11 +340,11 @@ discard block |
||
| 340 | 340 | */ |
| 341 | 341 | public function setRequestHeaders($headers) |
| 342 | 342 | { |
| 343 | - $headers = Google_Utils::normalize($headers); |
|
| 344 | - if ($this->requestHeaders) { |
|
| 345 | - $headers = array_merge($this->requestHeaders, $headers); |
|
| 346 | - } |
|
| 347 | - $this->requestHeaders = $headers; |
|
| 343 | + $headers = Google_Utils::normalize($headers); |
|
| 344 | + if ($this->requestHeaders) { |
|
| 345 | + $headers = array_merge($this->requestHeaders, $headers); |
|
| 346 | + } |
|
| 347 | + $this->requestHeaders = $headers; |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | */ |
| 353 | 353 | public function setPostBody($postBody) |
| 354 | 354 | { |
| 355 | - $this->postBody = $postBody; |
|
| 355 | + $this->postBody = $postBody; |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | /** |
@@ -361,10 +361,10 @@ discard block |
||
| 361 | 361 | */ |
| 362 | 362 | public function setUserAgent($userAgent) |
| 363 | 363 | { |
| 364 | - $this->userAgent = $userAgent; |
|
| 365 | - if ($this->canGzip) { |
|
| 366 | - $this->userAgent = $userAgent . self::GZIP_UA; |
|
| 367 | - } |
|
| 364 | + $this->userAgent = $userAgent; |
|
| 365 | + if ($this->canGzip) { |
|
| 366 | + $this->userAgent = $userAgent . self::GZIP_UA; |
|
| 367 | + } |
|
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | /** |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | */ |
| 373 | 373 | public function getUserAgent() |
| 374 | 374 | { |
| 375 | - return $this->userAgent; |
|
| 375 | + return $this->userAgent; |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | /** |
@@ -383,29 +383,29 @@ discard block |
||
| 383 | 383 | */ |
| 384 | 384 | public function getCacheKey() |
| 385 | 385 | { |
| 386 | - $key = $this->getUrl(); |
|
| 386 | + $key = $this->getUrl(); |
|
| 387 | 387 | |
| 388 | - if (isset($this->accessKey)) { |
|
| 389 | - $key .= $this->accessKey; |
|
| 390 | - } |
|
| 388 | + if (isset($this->accessKey)) { |
|
| 389 | + $key .= $this->accessKey; |
|
| 390 | + } |
|
| 391 | 391 | |
| 392 | - if (isset($this->requestHeaders['authorization'])) { |
|
| 393 | - $key .= $this->requestHeaders['authorization']; |
|
| 394 | - } |
|
| 392 | + if (isset($this->requestHeaders['authorization'])) { |
|
| 393 | + $key .= $this->requestHeaders['authorization']; |
|
| 394 | + } |
|
| 395 | 395 | |
| 396 | - return md5($key); |
|
| 396 | + return md5($key); |
|
| 397 | 397 | } |
| 398 | 398 | |
| 399 | 399 | public function getParsedCacheControl() |
| 400 | 400 | { |
| 401 | - $parsed = array(); |
|
| 402 | - $rawCacheControl = $this->getResponseHeader('cache-control'); |
|
| 403 | - if ($rawCacheControl) { |
|
| 404 | - $rawCacheControl = str_replace(', ', '&', $rawCacheControl); |
|
| 405 | - parse_str($rawCacheControl, $parsed); |
|
| 406 | - } |
|
| 401 | + $parsed = array(); |
|
| 402 | + $rawCacheControl = $this->getResponseHeader('cache-control'); |
|
| 403 | + if ($rawCacheControl) { |
|
| 404 | + $rawCacheControl = str_replace(', ', '&', $rawCacheControl); |
|
| 405 | + parse_str($rawCacheControl, $parsed); |
|
| 406 | + } |
|
| 407 | 407 | |
| 408 | - return $parsed; |
|
| 408 | + return $parsed; |
|
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | /** |
@@ -414,29 +414,29 @@ discard block |
||
| 414 | 414 | */ |
| 415 | 415 | public function toBatchString($id) |
| 416 | 416 | { |
| 417 | - $str = ''; |
|
| 418 | - $path = parse_url($this->getUrl(), PHP_URL_PATH) . "?" . |
|
| 419 | - http_build_query($this->queryParams); |
|
| 420 | - $str .= $this->getRequestMethod() . ' ' . $path . " HTTP/1.1\n"; |
|
| 417 | + $str = ''; |
|
| 418 | + $path = parse_url($this->getUrl(), PHP_URL_PATH) . "?" . |
|
| 419 | + http_build_query($this->queryParams); |
|
| 420 | + $str .= $this->getRequestMethod() . ' ' . $path . " HTTP/1.1\n"; |
|
| 421 | 421 | |
| 422 | - foreach ($this->getRequestHeaders() as $key => $val) { |
|
| 423 | - $str .= $key . ': ' . $val . "\n"; |
|
| 424 | - } |
|
| 422 | + foreach ($this->getRequestHeaders() as $key => $val) { |
|
| 423 | + $str .= $key . ': ' . $val . "\n"; |
|
| 424 | + } |
|
| 425 | 425 | |
| 426 | - if ($this->getPostBody()) { |
|
| 427 | - $str .= "\n"; |
|
| 428 | - $str .= $this->getPostBody(); |
|
| 429 | - } |
|
| 426 | + if ($this->getPostBody()) { |
|
| 427 | + $str .= "\n"; |
|
| 428 | + $str .= $this->getPostBody(); |
|
| 429 | + } |
|
| 430 | 430 | |
| 431 | - $headers = ''; |
|
| 432 | - foreach ($this->batchHeaders as $key => $val) { |
|
| 433 | - $headers .= $key . ': ' . $val . "\n"; |
|
| 434 | - } |
|
| 431 | + $headers = ''; |
|
| 432 | + foreach ($this->batchHeaders as $key => $val) { |
|
| 433 | + $headers .= $key . ': ' . $val . "\n"; |
|
| 434 | + } |
|
| 435 | 435 | |
| 436 | - $headers .= "Content-ID: $id\n"; |
|
| 437 | - $str = $headers . "\n" . $str; |
|
| 436 | + $headers .= "Content-ID: $id\n"; |
|
| 437 | + $str = $headers . "\n" . $str; |
|
| 438 | 438 | |
| 439 | - return $str; |
|
| 439 | + return $str; |
|
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | /** |
@@ -446,21 +446,21 @@ discard block |
||
| 446 | 446 | */ |
| 447 | 447 | private function parseQuery($string) |
| 448 | 448 | { |
| 449 | - $return = array(); |
|
| 450 | - $parts = explode("&", $string); |
|
| 451 | - foreach ($parts as $part) { |
|
| 452 | - list($key, $value) = explode('=', $part, 2); |
|
| 453 | - $value = urldecode($value); |
|
| 454 | - if (isset($return[$key])) { |
|
| 455 | - if (!is_array($return[$key])) { |
|
| 456 | - $return[$key] = array($return[$key]); |
|
| 457 | - } |
|
| 458 | - $return[$key][] = $value; |
|
| 459 | - } else { |
|
| 460 | - $return[$key] = $value; |
|
| 461 | - } |
|
| 462 | - } |
|
| 463 | - return $return; |
|
| 449 | + $return = array(); |
|
| 450 | + $parts = explode("&", $string); |
|
| 451 | + foreach ($parts as $part) { |
|
| 452 | + list($key, $value) = explode('=', $part, 2); |
|
| 453 | + $value = urldecode($value); |
|
| 454 | + if (isset($return[$key])) { |
|
| 455 | + if (!is_array($return[$key])) { |
|
| 456 | + $return[$key] = array($return[$key]); |
|
| 457 | + } |
|
| 458 | + $return[$key][] = $value; |
|
| 459 | + } else { |
|
| 460 | + $return[$key] = $value; |
|
| 461 | + } |
|
| 462 | + } |
|
| 463 | + return $return; |
|
| 464 | 464 | } |
| 465 | 465 | |
| 466 | 466 | /** |
@@ -470,17 +470,17 @@ discard block |
||
| 470 | 470 | */ |
| 471 | 471 | private function buildQuery($parts) |
| 472 | 472 | { |
| 473 | - $return = array(); |
|
| 474 | - foreach ($parts as $key => $value) { |
|
| 475 | - if (is_array($value)) { |
|
| 476 | - foreach ($value as $v) { |
|
| 477 | - $return[] = urlencode($key) . "=" . urlencode($v); |
|
| 478 | - } |
|
| 479 | - } else { |
|
| 480 | - $return[] = urlencode($key) . "=" . urlencode($value); |
|
| 481 | - } |
|
| 482 | - } |
|
| 483 | - return implode('&', $return); |
|
| 473 | + $return = array(); |
|
| 474 | + foreach ($parts as $key => $value) { |
|
| 475 | + if (is_array($value)) { |
|
| 476 | + foreach ($value as $v) { |
|
| 477 | + $return[] = urlencode($key) . "=" . urlencode($v); |
|
| 478 | + } |
|
| 479 | + } else { |
|
| 480 | + $return[] = urlencode($key) . "=" . urlencode($value); |
|
| 481 | + } |
|
| 482 | + } |
|
| 483 | + return implode('&', $return); |
|
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | /** |
@@ -490,15 +490,15 @@ discard block |
||
| 490 | 490 | */ |
| 491 | 491 | public function maybeMoveParametersToBody() |
| 492 | 492 | { |
| 493 | - if ($this->getRequestMethod() == "POST" && empty($this->postBody)) { |
|
| 494 | - $this->setRequestHeaders( |
|
| 495 | - array( |
|
| 496 | - "content-type" => |
|
| 497 | - "application/x-www-form-urlencoded; charset=UTF-8" |
|
| 498 | - ) |
|
| 499 | - ); |
|
| 500 | - $this->setPostBody($this->buildQuery($this->queryParams)); |
|
| 501 | - $this->queryParams = array(); |
|
| 502 | - } |
|
| 493 | + if ($this->getRequestMethod() == "POST" && empty($this->postBody)) { |
|
| 494 | + $this->setRequestHeaders( |
|
| 495 | + array( |
|
| 496 | + "content-type" => |
|
| 497 | + "application/x-www-form-urlencoded; charset=UTF-8" |
|
| 498 | + ) |
|
| 499 | + ); |
|
| 500 | + $this->setPostBody($this->buildQuery($this->queryParams)); |
|
| 501 | + $this->queryParams = array(); |
|
| 502 | + } |
|
| 503 | 503 | } |
| 504 | 504 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -255,10 +255,9 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | public function getUrl() |
| 257 | 257 | { |
| 258 | - return $this->baseComponent . $this->path . |
|
| 258 | + return $this->baseComponent.$this->path. |
|
| 259 | 259 | (count($this->queryParams) ? |
| 260 | - "?" . $this->buildQuery($this->queryParams) : |
|
| 261 | - ''); |
|
| 260 | + "?".$this->buildQuery($this->queryParams) : ''); |
|
| 262 | 261 | } |
| 263 | 262 | |
| 264 | 263 | /** |
@@ -305,16 +304,16 @@ discard block |
||
| 305 | 304 | if (substr($url, 0, 4) != 'http') { |
| 306 | 305 | // Force the path become relative. |
| 307 | 306 | if (substr($url, 0, 1) !== '/') { |
| 308 | - $url = '/' . $url; |
|
| 307 | + $url = '/'.$url; |
|
| 309 | 308 | } |
| 310 | 309 | } |
| 311 | 310 | $parts = parse_url($url); |
| 312 | 311 | if (isset($parts['host'])) { |
| 313 | 312 | $this->baseComponent = sprintf( |
| 314 | 313 | "%s%s%s", |
| 315 | - isset($parts['scheme']) ? $parts['scheme'] . "://" : '', |
|
| 314 | + isset($parts['scheme']) ? $parts['scheme']."://" : '', |
|
| 316 | 315 | isset($parts['host']) ? $parts['host'] : '', |
| 317 | - isset($parts['port']) ? ":" . $parts['port'] : '' |
|
| 316 | + isset($parts['port']) ? ":".$parts['port'] : '' |
|
| 318 | 317 | ); |
| 319 | 318 | } |
| 320 | 319 | $this->path = isset($parts['path']) ? $parts['path'] : ''; |
@@ -363,7 +362,7 @@ discard block |
||
| 363 | 362 | { |
| 364 | 363 | $this->userAgent = $userAgent; |
| 365 | 364 | if ($this->canGzip) { |
| 366 | - $this->userAgent = $userAgent . self::GZIP_UA; |
|
| 365 | + $this->userAgent = $userAgent.self::GZIP_UA; |
|
| 367 | 366 | } |
| 368 | 367 | } |
| 369 | 368 | |
@@ -415,12 +414,12 @@ discard block |
||
| 415 | 414 | public function toBatchString($id) |
| 416 | 415 | { |
| 417 | 416 | $str = ''; |
| 418 | - $path = parse_url($this->getUrl(), PHP_URL_PATH) . "?" . |
|
| 417 | + $path = parse_url($this->getUrl(), PHP_URL_PATH)."?". |
|
| 419 | 418 | http_build_query($this->queryParams); |
| 420 | - $str .= $this->getRequestMethod() . ' ' . $path . " HTTP/1.1\n"; |
|
| 419 | + $str .= $this->getRequestMethod().' '.$path." HTTP/1.1\n"; |
|
| 421 | 420 | |
| 422 | 421 | foreach ($this->getRequestHeaders() as $key => $val) { |
| 423 | - $str .= $key . ': ' . $val . "\n"; |
|
| 422 | + $str .= $key.': '.$val."\n"; |
|
| 424 | 423 | } |
| 425 | 424 | |
| 426 | 425 | if ($this->getPostBody()) { |
@@ -430,11 +429,11 @@ discard block |
||
| 430 | 429 | |
| 431 | 430 | $headers = ''; |
| 432 | 431 | foreach ($this->batchHeaders as $key => $val) { |
| 433 | - $headers .= $key . ': ' . $val . "\n"; |
|
| 432 | + $headers .= $key.': '.$val."\n"; |
|
| 434 | 433 | } |
| 435 | 434 | |
| 436 | 435 | $headers .= "Content-ID: $id\n"; |
| 437 | - $str = $headers . "\n" . $str; |
|
| 436 | + $str = $headers."\n".$str; |
|
| 438 | 437 | |
| 439 | 438 | return $str; |
| 440 | 439 | } |
@@ -474,10 +473,10 @@ discard block |
||
| 474 | 473 | foreach ($parts as $key => $value) { |
| 475 | 474 | if (is_array($value)) { |
| 476 | 475 | foreach ($value as $v) { |
| 477 | - $return[] = urlencode($key) . "=" . urlencode($v); |
|
| 476 | + $return[] = urlencode($key)."=".urlencode($v); |
|
| 478 | 477 | } |
| 479 | 478 | } else { |
| 480 | - $return[] = urlencode($key) . "=" . urlencode($value); |
|
| 479 | + $return[] = urlencode($key)."=".urlencode($value); |
|
| 481 | 480 | } |
| 482 | 481 | } |
| 483 | 482 | return implode('&', $return); |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | /** |
| 262 | 262 | * Logs with an arbitrary level. |
| 263 | 263 | * |
| 264 | - * @param mixed $level The log level |
|
| 264 | + * @param string $level The log level |
|
| 265 | 265 | * @param string $message The log message |
| 266 | 266 | * @param array $context The log context |
| 267 | 267 | */ |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | /** |
| 381 | 381 | * Converts a given log level to the integer form. |
| 382 | 382 | * |
| 383 | - * @param mixed $level The logging level |
|
| 383 | + * @param integer $level The logging level |
|
| 384 | 384 | * @return integer $level The normalized level |
| 385 | 385 | * @throws Google_Logger_Exception If $level is invalid |
| 386 | 386 | */ |
@@ -88,14 +88,14 @@ discard block |
||
| 88 | 88 | * @var array $levels Logging levels |
| 89 | 89 | */ |
| 90 | 90 | protected static $levels = array( |
| 91 | - self::EMERGENCY => 600, |
|
| 92 | - self::ALERT => 550, |
|
| 93 | - self::CRITICAL => 500, |
|
| 94 | - self::ERROR => 400, |
|
| 95 | - self::WARNING => 300, |
|
| 96 | - self::NOTICE => 250, |
|
| 97 | - self::INFO => 200, |
|
| 98 | - self::DEBUG => 100, |
|
| 91 | + self::EMERGENCY => 600, |
|
| 92 | + self::ALERT => 550, |
|
| 93 | + self::CRITICAL => 500, |
|
| 94 | + self::ERROR => 400, |
|
| 95 | + self::WARNING => 300, |
|
| 96 | + self::NOTICE => 250, |
|
| 97 | + self::INFO => 200, |
|
| 98 | + self::DEBUG => 100, |
|
| 99 | 99 | ); |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -122,20 +122,20 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function __construct(Google_Client $client) |
| 124 | 124 | { |
| 125 | - $this->setLevel( |
|
| 126 | - $client->getClassConfig('Google_Logger_Abstract', 'level') |
|
| 127 | - ); |
|
| 125 | + $this->setLevel( |
|
| 126 | + $client->getClassConfig('Google_Logger_Abstract', 'level') |
|
| 127 | + ); |
|
| 128 | 128 | |
| 129 | - $format = $client->getClassConfig('Google_Logger_Abstract', 'log_format'); |
|
| 130 | - $this->logFormat = $format ? $format : self::DEFAULT_LOG_FORMAT; |
|
| 129 | + $format = $client->getClassConfig('Google_Logger_Abstract', 'log_format'); |
|
| 130 | + $this->logFormat = $format ? $format : self::DEFAULT_LOG_FORMAT; |
|
| 131 | 131 | |
| 132 | - $format = $client->getClassConfig('Google_Logger_Abstract', 'date_format'); |
|
| 133 | - $this->dateFormat = $format ? $format : self::DEFAULT_DATE_FORMAT; |
|
| 132 | + $format = $client->getClassConfig('Google_Logger_Abstract', 'date_format'); |
|
| 133 | + $this->dateFormat = $format ? $format : self::DEFAULT_DATE_FORMAT; |
|
| 134 | 134 | |
| 135 | - $this->allowNewLines = (bool) $client->getClassConfig( |
|
| 136 | - 'Google_Logger_Abstract', |
|
| 137 | - 'allow_newlines' |
|
| 138 | - ); |
|
| 135 | + $this->allowNewLines = (bool) $client->getClassConfig( |
|
| 136 | + 'Google_Logger_Abstract', |
|
| 137 | + 'allow_newlines' |
|
| 138 | + ); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | public function setLevel($level) |
| 147 | 147 | { |
| 148 | - $this->level = $this->normalizeLevel($level); |
|
| 148 | + $this->level = $this->normalizeLevel($level); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | public function shouldHandle($level) |
| 158 | 158 | { |
| 159 | - return $this->normalizeLevel($level) >= $this->level; |
|
| 159 | + return $this->normalizeLevel($level) >= $this->level; |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | */ |
| 168 | 168 | public function emergency($message, array $context = array()) |
| 169 | 169 | { |
| 170 | - $this->log(self::EMERGENCY, $message, $context); |
|
| 170 | + $this->log(self::EMERGENCY, $message, $context); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | /** |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | public function alert($message, array $context = array()) |
| 183 | 183 | { |
| 184 | - $this->log(self::ALERT, $message, $context); |
|
| 184 | + $this->log(self::ALERT, $message, $context); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | */ |
| 195 | 195 | public function critical($message, array $context = array()) |
| 196 | 196 | { |
| 197 | - $this->log(self::CRITICAL, $message, $context); |
|
| 197 | + $this->log(self::CRITICAL, $message, $context); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | /** |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | */ |
| 207 | 207 | public function error($message, array $context = array()) |
| 208 | 208 | { |
| 209 | - $this->log(self::ERROR, $message, $context); |
|
| 209 | + $this->log(self::ERROR, $message, $context); |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | /** |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | */ |
| 221 | 221 | public function warning($message, array $context = array()) |
| 222 | 222 | { |
| 223 | - $this->log(self::WARNING, $message, $context); |
|
| 223 | + $this->log(self::WARNING, $message, $context); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | */ |
| 232 | 232 | public function notice($message, array $context = array()) |
| 233 | 233 | { |
| 234 | - $this->log(self::NOTICE, $message, $context); |
|
| 234 | + $this->log(self::NOTICE, $message, $context); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | */ |
| 245 | 245 | public function info($message, array $context = array()) |
| 246 | 246 | { |
| 247 | - $this->log(self::INFO, $message, $context); |
|
| 247 | + $this->log(self::INFO, $message, $context); |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | /** |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | public function debug($message, array $context = array()) |
| 257 | 257 | { |
| 258 | - $this->log(self::DEBUG, $message, $context); |
|
| 258 | + $this->log(self::DEBUG, $message, $context); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | /** |
@@ -267,21 +267,21 @@ discard block |
||
| 267 | 267 | */ |
| 268 | 268 | public function log($level, $message, array $context = array()) |
| 269 | 269 | { |
| 270 | - if (!$this->shouldHandle($level)) { |
|
| 271 | - return false; |
|
| 272 | - } |
|
| 273 | - |
|
| 274 | - $levelName = is_int($level) ? array_search($level, self::$levels) : $level; |
|
| 275 | - $message = $this->interpolate( |
|
| 276 | - array( |
|
| 277 | - 'message' => $message, |
|
| 278 | - 'context' => $context, |
|
| 279 | - 'level' => strtoupper($levelName), |
|
| 280 | - 'datetime' => new DateTime(), |
|
| 281 | - ) |
|
| 282 | - ); |
|
| 283 | - |
|
| 284 | - $this->write($message); |
|
| 270 | + if (!$this->shouldHandle($level)) { |
|
| 271 | + return false; |
|
| 272 | + } |
|
| 273 | + |
|
| 274 | + $levelName = is_int($level) ? array_search($level, self::$levels) : $level; |
|
| 275 | + $message = $this->interpolate( |
|
| 276 | + array( |
|
| 277 | + 'message' => $message, |
|
| 278 | + 'context' => $context, |
|
| 279 | + 'level' => strtoupper($levelName), |
|
| 280 | + 'datetime' => new DateTime(), |
|
| 281 | + ) |
|
| 282 | + ); |
|
| 283 | + |
|
| 284 | + $this->write($message); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | /** |
@@ -292,26 +292,26 @@ discard block |
||
| 292 | 292 | */ |
| 293 | 293 | protected function interpolate(array $variables = array()) |
| 294 | 294 | { |
| 295 | - $template = $this->logFormat; |
|
| 296 | - |
|
| 297 | - if (!$variables['context']) { |
|
| 298 | - $template = str_replace('%context%', '', $template); |
|
| 299 | - unset($variables['context']); |
|
| 300 | - } else { |
|
| 301 | - $this->reverseJsonInContext($variables['context']); |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - foreach ($variables as $key => $value) { |
|
| 305 | - if (strpos($template, '%'. $key .'%') !== false) { |
|
| 306 | - $template = str_replace( |
|
| 307 | - '%' . $key . '%', |
|
| 308 | - $this->export($value), |
|
| 309 | - $template |
|
| 310 | - ); |
|
| 311 | - } |
|
| 312 | - } |
|
| 313 | - |
|
| 314 | - return $template; |
|
| 295 | + $template = $this->logFormat; |
|
| 296 | + |
|
| 297 | + if (!$variables['context']) { |
|
| 298 | + $template = str_replace('%context%', '', $template); |
|
| 299 | + unset($variables['context']); |
|
| 300 | + } else { |
|
| 301 | + $this->reverseJsonInContext($variables['context']); |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + foreach ($variables as $key => $value) { |
|
| 305 | + if (strpos($template, '%'. $key .'%') !== false) { |
|
| 306 | + $template = str_replace( |
|
| 307 | + '%' . $key . '%', |
|
| 308 | + $this->export($value), |
|
| 309 | + $template |
|
| 310 | + ); |
|
| 311 | + } |
|
| 312 | + } |
|
| 313 | + |
|
| 314 | + return $template; |
|
| 315 | 315 | } |
| 316 | 316 | |
| 317 | 317 | /** |
@@ -321,20 +321,20 @@ discard block |
||
| 321 | 321 | */ |
| 322 | 322 | protected function reverseJsonInContext(array &$context) |
| 323 | 323 | { |
| 324 | - if (!$context) { |
|
| 325 | - return; |
|
| 326 | - } |
|
| 327 | - |
|
| 328 | - foreach ($context as $key => $val) { |
|
| 329 | - if (!$val || !is_string($val) || !($val[0] == '{' || $val[0] == '[')) { |
|
| 330 | - continue; |
|
| 331 | - } |
|
| 332 | - |
|
| 333 | - $json = @json_decode($val); |
|
| 334 | - if (is_object($json) || is_array($json)) { |
|
| 335 | - $context[$key] = $json; |
|
| 336 | - } |
|
| 337 | - } |
|
| 324 | + if (!$context) { |
|
| 325 | + return; |
|
| 326 | + } |
|
| 327 | + |
|
| 328 | + foreach ($context as $key => $val) { |
|
| 329 | + if (!$val || !is_string($val) || !($val[0] == '{' || $val[0] == '[')) { |
|
| 330 | + continue; |
|
| 331 | + } |
|
| 332 | + |
|
| 333 | + $json = @json_decode($val); |
|
| 334 | + if (is_object($json) || is_array($json)) { |
|
| 335 | + $context[$key] = $json; |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | /** |
@@ -344,37 +344,37 @@ discard block |
||
| 344 | 344 | */ |
| 345 | 345 | protected function export($value) |
| 346 | 346 | { |
| 347 | - if (is_string($value)) { |
|
| 348 | - if ($this->allowNewLines) { |
|
| 349 | - return $value; |
|
| 350 | - } |
|
| 347 | + if (is_string($value)) { |
|
| 348 | + if ($this->allowNewLines) { |
|
| 349 | + return $value; |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - return preg_replace('/[\r\n]+/', ' ', $value); |
|
| 353 | - } |
|
| 352 | + return preg_replace('/[\r\n]+/', ' ', $value); |
|
| 353 | + } |
|
| 354 | 354 | |
| 355 | - if (is_resource($value)) { |
|
| 356 | - return sprintf( |
|
| 357 | - 'resource(%d) of type (%s)', |
|
| 358 | - $value, |
|
| 359 | - get_resource_type($value) |
|
| 360 | - ); |
|
| 361 | - } |
|
| 355 | + if (is_resource($value)) { |
|
| 356 | + return sprintf( |
|
| 357 | + 'resource(%d) of type (%s)', |
|
| 358 | + $value, |
|
| 359 | + get_resource_type($value) |
|
| 360 | + ); |
|
| 361 | + } |
|
| 362 | 362 | |
| 363 | - if ($value instanceof DateTime) { |
|
| 364 | - return $value->format($this->dateFormat); |
|
| 365 | - } |
|
| 363 | + if ($value instanceof DateTime) { |
|
| 364 | + return $value->format($this->dateFormat); |
|
| 365 | + } |
|
| 366 | 366 | |
| 367 | - if (version_compare(PHP_VERSION, '5.4.0', '>=')) { |
|
| 368 | - $options = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; |
|
| 367 | + if (version_compare(PHP_VERSION, '5.4.0', '>=')) { |
|
| 368 | + $options = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; |
|
| 369 | 369 | |
| 370 | - if ($this->allowNewLines) { |
|
| 371 | - $options |= JSON_PRETTY_PRINT; |
|
| 372 | - } |
|
| 370 | + if ($this->allowNewLines) { |
|
| 371 | + $options |= JSON_PRETTY_PRINT; |
|
| 372 | + } |
|
| 373 | 373 | |
| 374 | - return @json_encode($value, $options); |
|
| 375 | - } |
|
| 374 | + return @json_encode($value, $options); |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | - return str_replace('\\/', '/', @json_encode($value)); |
|
| 377 | + return str_replace('\\/', '/', @json_encode($value)); |
|
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
@@ -386,17 +386,17 @@ discard block |
||
| 386 | 386 | */ |
| 387 | 387 | protected function normalizeLevel($level) |
| 388 | 388 | { |
| 389 | - if (is_int($level) && array_search($level, self::$levels) !== false) { |
|
| 390 | - return $level; |
|
| 391 | - } |
|
| 389 | + if (is_int($level) && array_search($level, self::$levels) !== false) { |
|
| 390 | + return $level; |
|
| 391 | + } |
|
| 392 | 392 | |
| 393 | - if (is_string($level) && isset(self::$levels[$level])) { |
|
| 394 | - return self::$levels[$level]; |
|
| 395 | - } |
|
| 393 | + if (is_string($level) && isset(self::$levels[$level])) { |
|
| 394 | + return self::$levels[$level]; |
|
| 395 | + } |
|
| 396 | 396 | |
| 397 | - throw new Google_Logger_Exception( |
|
| 398 | - sprintf("Unknown LogLevel: '%s'", $level) |
|
| 399 | - ); |
|
| 397 | + throw new Google_Logger_Exception( |
|
| 398 | + sprintf("Unknown LogLevel: '%s'", $level) |
|
| 399 | + ); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | /** |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -302,9 +302,9 @@ discard block |
||
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | foreach ($variables as $key => $value) { |
| 305 | - if (strpos($template, '%'. $key .'%') !== false) { |
|
| 305 | + if (strpos($template, '%'.$key.'%') !== false) { |
|
| 306 | 306 | $template = str_replace( |
| 307 | - '%' . $key . '%', |
|
| 307 | + '%'.$key.'%', |
|
| 308 | 308 | $this->export($value), |
| 309 | 309 | $template |
| 310 | 310 | ); |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | /** |
| 222 | 222 | * Given a variable name, discover its type. |
| 223 | 223 | * |
| 224 | - * @param $name |
|
| 224 | + * @param string $name |
|
| 225 | 225 | * @param $item |
| 226 | 226 | * @return object The object from the item. |
| 227 | 227 | */ |
@@ -278,6 +278,9 @@ discard block |
||
| 278 | 278 | return $key . "Type"; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | + /** |
|
| 282 | + * @param string $key |
|
| 283 | + */ |
|
| 281 | 284 | protected function dataType($key) |
| 282 | 285 | { |
| 283 | 286 | return $key . "DataType"; |
@@ -38,12 +38,12 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | final public function __construct() |
| 40 | 40 | { |
| 41 | - if (func_num_args() == 1 && is_array(func_get_arg(0))) { |
|
| 42 | - // Initialize the model with the array's contents. |
|
| 43 | - $array = func_get_arg(0); |
|
| 44 | - $this->mapTypes($array); |
|
| 45 | - } |
|
| 46 | - $this->gapiInit(); |
|
| 41 | + if (func_num_args() == 1 && is_array(func_get_arg(0))) { |
|
| 42 | + // Initialize the model with the array's contents. |
|
| 43 | + $array = func_get_arg(0); |
|
| 44 | + $this->mapTypes($array); |
|
| 45 | + } |
|
| 46 | + $this->gapiInit(); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -53,39 +53,39 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function __get($key) |
| 55 | 55 | { |
| 56 | - $keyTypeName = $this->keyType($key); |
|
| 57 | - $keyDataType = $this->dataType($key); |
|
| 58 | - if (isset($this->$keyTypeName) && !isset($this->processed[$key])) { |
|
| 59 | - if (isset($this->modelData[$key])) { |
|
| 60 | - $val = $this->modelData[$key]; |
|
| 61 | - } else if (isset($this->$keyDataType) && |
|
| 62 | - ($this->$keyDataType == 'array' || $this->$keyDataType == 'map')) { |
|
| 63 | - $val = array(); |
|
| 64 | - } else { |
|
| 65 | - $val = null; |
|
| 66 | - } |
|
| 56 | + $keyTypeName = $this->keyType($key); |
|
| 57 | + $keyDataType = $this->dataType($key); |
|
| 58 | + if (isset($this->$keyTypeName) && !isset($this->processed[$key])) { |
|
| 59 | + if (isset($this->modelData[$key])) { |
|
| 60 | + $val = $this->modelData[$key]; |
|
| 61 | + } else if (isset($this->$keyDataType) && |
|
| 62 | + ($this->$keyDataType == 'array' || $this->$keyDataType == 'map')) { |
|
| 63 | + $val = array(); |
|
| 64 | + } else { |
|
| 65 | + $val = null; |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - if ($this->isAssociativeArray($val)) { |
|
| 69 | - if (isset($this->$keyDataType) && 'map' == $this->$keyDataType) { |
|
| 70 | - foreach ($val as $arrayKey => $arrayItem) { |
|
| 71 | - $this->modelData[$key][$arrayKey] = |
|
| 72 | - $this->createObjectFromName($keyTypeName, $arrayItem); |
|
| 73 | - } |
|
| 74 | - } else { |
|
| 75 | - $this->modelData[$key] = $this->createObjectFromName($keyTypeName, $val); |
|
| 76 | - } |
|
| 77 | - } else if (is_array($val)) { |
|
| 78 | - $arrayObject = array(); |
|
| 79 | - foreach ($val as $arrayIndex => $arrayItem) { |
|
| 80 | - $arrayObject[$arrayIndex] = |
|
| 81 | - $this->createObjectFromName($keyTypeName, $arrayItem); |
|
| 82 | - } |
|
| 83 | - $this->modelData[$key] = $arrayObject; |
|
| 84 | - } |
|
| 85 | - $this->processed[$key] = true; |
|
| 86 | - } |
|
| 68 | + if ($this->isAssociativeArray($val)) { |
|
| 69 | + if (isset($this->$keyDataType) && 'map' == $this->$keyDataType) { |
|
| 70 | + foreach ($val as $arrayKey => $arrayItem) { |
|
| 71 | + $this->modelData[$key][$arrayKey] = |
|
| 72 | + $this->createObjectFromName($keyTypeName, $arrayItem); |
|
| 73 | + } |
|
| 74 | + } else { |
|
| 75 | + $this->modelData[$key] = $this->createObjectFromName($keyTypeName, $val); |
|
| 76 | + } |
|
| 77 | + } else if (is_array($val)) { |
|
| 78 | + $arrayObject = array(); |
|
| 79 | + foreach ($val as $arrayIndex => $arrayItem) { |
|
| 80 | + $arrayObject[$arrayIndex] = |
|
| 81 | + $this->createObjectFromName($keyTypeName, $arrayItem); |
|
| 82 | + } |
|
| 83 | + $this->modelData[$key] = $arrayObject; |
|
| 84 | + } |
|
| 85 | + $this->processed[$key] = true; |
|
| 86 | + } |
|
| 87 | 87 | |
| 88 | - return isset($this->modelData[$key]) ? $this->modelData[$key] : null; |
|
| 88 | + return isset($this->modelData[$key]) ? $this->modelData[$key] : null; |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
@@ -96,19 +96,19 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | protected function mapTypes($array) |
| 98 | 98 | { |
| 99 | - // Hard initialise simple types, lazy load more complex ones. |
|
| 100 | - foreach ($array as $key => $val) { |
|
| 101 | - if ( !property_exists($this, $this->keyType($key)) && |
|
| 102 | - property_exists($this, $key)) { |
|
| 103 | - $this->$key = $val; |
|
| 104 | - unset($array[$key]); |
|
| 105 | - } elseif (property_exists($this, $camelKey = Google_Utils::camelCase($key))) { |
|
| 106 | - // This checks if property exists as camelCase, leaving it in array as snake_case |
|
| 107 | - // in case of backwards compatibility issues. |
|
| 108 | - $this->$camelKey = $val; |
|
| 109 | - } |
|
| 110 | - } |
|
| 111 | - $this->modelData = $array; |
|
| 99 | + // Hard initialise simple types, lazy load more complex ones. |
|
| 100 | + foreach ($array as $key => $val) { |
|
| 101 | + if ( !property_exists($this, $this->keyType($key)) && |
|
| 102 | + property_exists($this, $key)) { |
|
| 103 | + $this->$key = $val; |
|
| 104 | + unset($array[$key]); |
|
| 105 | + } elseif (property_exists($this, $camelKey = Google_Utils::camelCase($key))) { |
|
| 106 | + // This checks if property exists as camelCase, leaving it in array as snake_case |
|
| 107 | + // in case of backwards compatibility issues. |
|
| 108 | + $this->$camelKey = $val; |
|
| 109 | + } |
|
| 110 | + } |
|
| 111 | + $this->modelData = $array; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | protected function gapiInit() |
| 120 | 120 | { |
| 121 | - return; |
|
| 121 | + return; |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -129,29 +129,29 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public function toSimpleObject() |
| 131 | 131 | { |
| 132 | - $object = new stdClass(); |
|
| 132 | + $object = new stdClass(); |
|
| 133 | 133 | |
| 134 | - // Process all other data. |
|
| 135 | - foreach ($this->modelData as $key => $val) { |
|
| 136 | - $result = $this->getSimpleValue($val); |
|
| 137 | - if ($result !== null) { |
|
| 138 | - $object->$key = $this->nullPlaceholderCheck($result); |
|
| 139 | - } |
|
| 140 | - } |
|
| 134 | + // Process all other data. |
|
| 135 | + foreach ($this->modelData as $key => $val) { |
|
| 136 | + $result = $this->getSimpleValue($val); |
|
| 137 | + if ($result !== null) { |
|
| 138 | + $object->$key = $this->nullPlaceholderCheck($result); |
|
| 139 | + } |
|
| 140 | + } |
|
| 141 | 141 | |
| 142 | - // Process all public properties. |
|
| 143 | - $reflect = new ReflectionObject($this); |
|
| 144 | - $props = $reflect->getProperties(ReflectionProperty::IS_PUBLIC); |
|
| 145 | - foreach ($props as $member) { |
|
| 146 | - $name = $member->getName(); |
|
| 147 | - $result = $this->getSimpleValue($this->$name); |
|
| 148 | - if ($result !== null) { |
|
| 149 | - $name = $this->getMappedName($name); |
|
| 150 | - $object->$name = $this->nullPlaceholderCheck($result); |
|
| 151 | - } |
|
| 152 | - } |
|
| 142 | + // Process all public properties. |
|
| 143 | + $reflect = new ReflectionObject($this); |
|
| 144 | + $props = $reflect->getProperties(ReflectionProperty::IS_PUBLIC); |
|
| 145 | + foreach ($props as $member) { |
|
| 146 | + $name = $member->getName(); |
|
| 147 | + $result = $this->getSimpleValue($this->$name); |
|
| 148 | + if ($result !== null) { |
|
| 149 | + $name = $this->getMappedName($name); |
|
| 150 | + $object->$name = $this->nullPlaceholderCheck($result); |
|
| 151 | + } |
|
| 152 | + } |
|
| 153 | 153 | |
| 154 | - return $object; |
|
| 154 | + return $object; |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
@@ -160,20 +160,20 @@ discard block |
||
| 160 | 160 | */ |
| 161 | 161 | private function getSimpleValue($value) |
| 162 | 162 | { |
| 163 | - if ($value instanceof Google_Model) { |
|
| 164 | - return $value->toSimpleObject(); |
|
| 165 | - } else if (is_array($value)) { |
|
| 166 | - $return = array(); |
|
| 167 | - foreach ($value as $key => $a_value) { |
|
| 168 | - $a_value = $this->getSimpleValue($a_value); |
|
| 169 | - if ($a_value !== null) { |
|
| 170 | - $key = $this->getMappedName($key); |
|
| 171 | - $return[$key] = $this->nullPlaceholderCheck($a_value); |
|
| 172 | - } |
|
| 173 | - } |
|
| 174 | - return $return; |
|
| 175 | - } |
|
| 176 | - return $value; |
|
| 163 | + if ($value instanceof Google_Model) { |
|
| 164 | + return $value->toSimpleObject(); |
|
| 165 | + } else if (is_array($value)) { |
|
| 166 | + $return = array(); |
|
| 167 | + foreach ($value as $key => $a_value) { |
|
| 168 | + $a_value = $this->getSimpleValue($a_value); |
|
| 169 | + if ($a_value !== null) { |
|
| 170 | + $key = $this->getMappedName($key); |
|
| 171 | + $return[$key] = $this->nullPlaceholderCheck($a_value); |
|
| 172 | + } |
|
| 173 | + } |
|
| 174 | + return $return; |
|
| 175 | + } |
|
| 176 | + return $value; |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | /** |
@@ -181,10 +181,10 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | private function nullPlaceholderCheck($value) |
| 183 | 183 | { |
| 184 | - if ($value === self::NULL_VALUE) { |
|
| 185 | - return null; |
|
| 186 | - } |
|
| 187 | - return $value; |
|
| 184 | + if ($value === self::NULL_VALUE) { |
|
| 185 | + return null; |
|
| 186 | + } |
|
| 187 | + return $value; |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | /** |
@@ -192,11 +192,11 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | private function getMappedName($key) |
| 194 | 194 | { |
| 195 | - if (isset($this->internal_gapi_mappings) && |
|
| 196 | - isset($this->internal_gapi_mappings[$key])) { |
|
| 197 | - $key = $this->internal_gapi_mappings[$key]; |
|
| 198 | - } |
|
| 199 | - return $key; |
|
| 195 | + if (isset($this->internal_gapi_mappings) && |
|
| 196 | + isset($this->internal_gapi_mappings[$key])) { |
|
| 197 | + $key = $this->internal_gapi_mappings[$key]; |
|
| 198 | + } |
|
| 199 | + return $key; |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | /** |
@@ -206,16 +206,16 @@ discard block |
||
| 206 | 206 | */ |
| 207 | 207 | protected function isAssociativeArray($array) |
| 208 | 208 | { |
| 209 | - if (!is_array($array)) { |
|
| 210 | - return false; |
|
| 211 | - } |
|
| 212 | - $keys = array_keys($array); |
|
| 213 | - foreach ($keys as $key) { |
|
| 214 | - if (is_string($key)) { |
|
| 215 | - return true; |
|
| 216 | - } |
|
| 217 | - } |
|
| 218 | - return false; |
|
| 209 | + if (!is_array($array)) { |
|
| 210 | + return false; |
|
| 211 | + } |
|
| 212 | + $keys = array_keys($array); |
|
| 213 | + foreach ($keys as $key) { |
|
| 214 | + if (is_string($key)) { |
|
| 215 | + return true; |
|
| 216 | + } |
|
| 217 | + } |
|
| 218 | + return false; |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -227,8 +227,8 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | private function createObjectFromName($name, $item) |
| 229 | 229 | { |
| 230 | - $type = $this->$name; |
|
| 231 | - return new $type($item); |
|
| 230 | + $type = $this->$name; |
|
| 231 | + return new $type($item); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | /** |
@@ -239,57 +239,57 @@ discard block |
||
| 239 | 239 | */ |
| 240 | 240 | public function assertIsArray($obj, $method) |
| 241 | 241 | { |
| 242 | - if ($obj && !is_array($obj)) { |
|
| 243 | - throw new Google_Exception( |
|
| 244 | - "Incorrect parameter type passed to $method(). Expected an array." |
|
| 245 | - ); |
|
| 246 | - } |
|
| 242 | + if ($obj && !is_array($obj)) { |
|
| 243 | + throw new Google_Exception( |
|
| 244 | + "Incorrect parameter type passed to $method(). Expected an array." |
|
| 245 | + ); |
|
| 246 | + } |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | public function offsetExists($offset) |
| 250 | 250 | { |
| 251 | - return isset($this->$offset) || isset($this->modelData[$offset]); |
|
| 251 | + return isset($this->$offset) || isset($this->modelData[$offset]); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | public function offsetGet($offset) |
| 255 | 255 | { |
| 256 | - return isset($this->$offset) ? |
|
| 257 | - $this->$offset : |
|
| 258 | - $this->__get($offset); |
|
| 256 | + return isset($this->$offset) ? |
|
| 257 | + $this->$offset : |
|
| 258 | + $this->__get($offset); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | public function offsetSet($offset, $value) |
| 262 | 262 | { |
| 263 | - if (property_exists($this, $offset)) { |
|
| 264 | - $this->$offset = $value; |
|
| 265 | - } else { |
|
| 266 | - $this->modelData[$offset] = $value; |
|
| 267 | - $this->processed[$offset] = true; |
|
| 268 | - } |
|
| 263 | + if (property_exists($this, $offset)) { |
|
| 264 | + $this->$offset = $value; |
|
| 265 | + } else { |
|
| 266 | + $this->modelData[$offset] = $value; |
|
| 267 | + $this->processed[$offset] = true; |
|
| 268 | + } |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | public function offsetUnset($offset) |
| 272 | 272 | { |
| 273 | - unset($this->modelData[$offset]); |
|
| 273 | + unset($this->modelData[$offset]); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | protected function keyType($key) |
| 277 | 277 | { |
| 278 | - return $key . "Type"; |
|
| 278 | + return $key . "Type"; |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | protected function dataType($key) |
| 282 | 282 | { |
| 283 | - return $key . "DataType"; |
|
| 283 | + return $key . "DataType"; |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | public function __isset($key) |
| 287 | 287 | { |
| 288 | - return isset($this->modelData[$key]); |
|
| 288 | + return isset($this->modelData[$key]); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | public function __unset($key) |
| 292 | 292 | { |
| 293 | - unset($this->modelData[$key]); |
|
| 293 | + unset($this->modelData[$key]); |
|
| 294 | 294 | } |
| 295 | 295 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | { |
| 99 | 99 | // Hard initialise simple types, lazy load more complex ones. |
| 100 | 100 | foreach ($array as $key => $val) { |
| 101 | - if ( !property_exists($this, $this->keyType($key)) && |
|
| 101 | + if (!property_exists($this, $this->keyType($key)) && |
|
| 102 | 102 | property_exists($this, $key)) { |
| 103 | 103 | $this->$key = $val; |
| 104 | 104 | unset($array[$key]); |
@@ -254,8 +254,7 @@ discard block |
||
| 254 | 254 | public function offsetGet($offset) |
| 255 | 255 | { |
| 256 | 256 | return isset($this->$offset) ? |
| 257 | - $this->$offset : |
|
| 258 | - $this->__get($offset); |
|
| 257 | + $this->$offset : $this->__get($offset); |
|
| 259 | 258 | } |
| 260 | 259 | |
| 261 | 260 | public function offsetSet($offset, $value) |
@@ -275,12 +274,12 @@ discard block |
||
| 275 | 274 | |
| 276 | 275 | protected function keyType($key) |
| 277 | 276 | { |
| 278 | - return $key . "Type"; |
|
| 277 | + return $key."Type"; |
|
| 279 | 278 | } |
| 280 | 279 | |
| 281 | 280 | protected function dataType($key) |
| 282 | 281 | { |
| 283 | - return $key . "DataType"; |
|
| 282 | + return $key."DataType"; |
|
| 284 | 283 | } |
| 285 | 284 | |
| 286 | 285 | public function __isset($key) |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | * (accounts.patch) |
| 436 | 436 | * |
| 437 | 437 | * @param int $id The account id |
| 438 | - * @param Google_Account $postBody |
|
| 438 | + * @param Google_Service_AdExchangeBuyer_Account $postBody |
|
| 439 | 439 | * @param array $optParams Optional parameters. |
| 440 | 440 | * @return Google_Service_AdExchangeBuyer_Account |
| 441 | 441 | */ |
@@ -450,7 +450,7 @@ discard block |
||
| 450 | 450 | * Updates an existing account. (accounts.update) |
| 451 | 451 | * |
| 452 | 452 | * @param int $id The account id |
| 453 | - * @param Google_Account $postBody |
|
| 453 | + * @param Google_Service_AdExchangeBuyer_Account $postBody |
|
| 454 | 454 | * @param array $optParams Optional parameters. |
| 455 | 455 | * @return Google_Service_AdExchangeBuyer_Account |
| 456 | 456 | */ |
@@ -539,7 +539,7 @@ discard block |
||
| 539 | 539 | * updated. |
| 540 | 540 | * @param string $billingId The billing id associated with the budget being |
| 541 | 541 | * updated. |
| 542 | - * @param Google_Budget $postBody |
|
| 542 | + * @param Google_Service_AdExchangeBuyer_Budget $postBody |
|
| 543 | 543 | * @param array $optParams Optional parameters. |
| 544 | 544 | * @return Google_Service_AdExchangeBuyer_Budget |
| 545 | 545 | */ |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * updated. |
| 560 | 560 | * @param string $billingId The billing id associated with the budget being |
| 561 | 561 | * updated. |
| 562 | - * @param Google_Budget $postBody |
|
| 562 | + * @param Google_Service_AdExchangeBuyer_Budget $postBody |
|
| 563 | 563 | * @param array $optParams Optional parameters. |
| 564 | 564 | * @return Google_Service_AdExchangeBuyer_Budget |
| 565 | 565 | */ |
@@ -601,7 +601,7 @@ discard block |
||
| 601 | 601 | /** |
| 602 | 602 | * Submit a new creative. (creatives.insert) |
| 603 | 603 | * |
| 604 | - * @param Google_Creative $postBody |
|
| 604 | + * @param Google_Service_AdExchangeBuyer_Creative $postBody |
|
| 605 | 605 | * @param array $optParams Optional parameters. |
| 606 | 606 | * @return Google_Service_AdExchangeBuyer_Creative |
| 607 | 607 | */ |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | * |
| 763 | 763 | * @param string $accountId The account id to insert the pretargeting config |
| 764 | 764 | * for. |
| 765 | - * @param Google_PretargetingConfig $postBody |
|
| 765 | + * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody |
|
| 766 | 766 | * @param array $optParams Optional parameters. |
| 767 | 767 | * @return Google_Service_AdExchangeBuyer_PretargetingConfig |
| 768 | 768 | */ |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | * @param string $accountId The account id to update the pretargeting config |
| 796 | 796 | * for. |
| 797 | 797 | * @param string $configId The specific id of the configuration to update. |
| 798 | - * @param Google_PretargetingConfig $postBody |
|
| 798 | + * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody |
|
| 799 | 799 | * @param array $optParams Optional parameters. |
| 800 | 800 | * @return Google_Service_AdExchangeBuyer_PretargetingConfig |
| 801 | 801 | */ |
@@ -812,7 +812,7 @@ discard block |
||
| 812 | 812 | * @param string $accountId The account id to update the pretargeting config |
| 813 | 813 | * for. |
| 814 | 814 | * @param string $configId The specific id of the configuration to update. |
| 815 | - * @param Google_PretargetingConfig $postBody |
|
| 815 | + * @param Google_Service_AdExchangeBuyer_PretargetingConfig $postBody |
|
| 816 | 816 | * @param array $optParams Optional parameters. |
| 817 | 817 | * @return Google_Service_AdExchangeBuyer_PretargetingConfig |
| 818 | 818 | */ |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | /** Manage your Ad Exchange buyer account configuration. */ |
| 35 | 35 | const ADEXCHANGE_BUYER = |
| 36 | - "https://www.googleapis.com/auth/adexchange.buyer"; |
|
| 36 | + "https://www.googleapis.com/auth/adexchange.buyer"; |
|
| 37 | 37 | |
| 38 | 38 | public $accounts; |
| 39 | 39 | public $billingInfo; |
@@ -51,343 +51,343 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function __construct(Google_Client $client) |
| 53 | 53 | { |
| 54 | - parent::__construct($client); |
|
| 55 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 56 | - $this->servicePath = 'adexchangebuyer/v1.3/'; |
|
| 57 | - $this->version = 'v1.3'; |
|
| 58 | - $this->serviceName = 'adexchangebuyer'; |
|
| 59 | - |
|
| 60 | - $this->accounts = new Google_Service_AdExchangeBuyer_Accounts_Resource( |
|
| 61 | - $this, |
|
| 62 | - $this->serviceName, |
|
| 63 | - 'accounts', |
|
| 64 | - array( |
|
| 65 | - 'methods' => array( |
|
| 66 | - 'get' => array( |
|
| 67 | - 'path' => 'accounts/{id}', |
|
| 68 | - 'httpMethod' => 'GET', |
|
| 69 | - 'parameters' => array( |
|
| 70 | - 'id' => array( |
|
| 71 | - 'location' => 'path', |
|
| 72 | - 'type' => 'integer', |
|
| 73 | - 'required' => true, |
|
| 74 | - ), |
|
| 75 | - ), |
|
| 76 | - ),'list' => array( |
|
| 77 | - 'path' => 'accounts', |
|
| 78 | - 'httpMethod' => 'GET', |
|
| 79 | - 'parameters' => array(), |
|
| 80 | - ),'patch' => array( |
|
| 81 | - 'path' => 'accounts/{id}', |
|
| 82 | - 'httpMethod' => 'PATCH', |
|
| 83 | - 'parameters' => array( |
|
| 84 | - 'id' => array( |
|
| 85 | - 'location' => 'path', |
|
| 86 | - 'type' => 'integer', |
|
| 87 | - 'required' => true, |
|
| 88 | - ), |
|
| 89 | - ), |
|
| 90 | - ),'update' => array( |
|
| 91 | - 'path' => 'accounts/{id}', |
|
| 92 | - 'httpMethod' => 'PUT', |
|
| 93 | - 'parameters' => array( |
|
| 94 | - 'id' => array( |
|
| 95 | - 'location' => 'path', |
|
| 96 | - 'type' => 'integer', |
|
| 97 | - 'required' => true, |
|
| 98 | - ), |
|
| 99 | - ), |
|
| 100 | - ), |
|
| 101 | - ) |
|
| 102 | - ) |
|
| 103 | - ); |
|
| 104 | - $this->billingInfo = new Google_Service_AdExchangeBuyer_BillingInfo_Resource( |
|
| 105 | - $this, |
|
| 106 | - $this->serviceName, |
|
| 107 | - 'billingInfo', |
|
| 108 | - array( |
|
| 109 | - 'methods' => array( |
|
| 110 | - 'get' => array( |
|
| 111 | - 'path' => 'billinginfo/{accountId}', |
|
| 112 | - 'httpMethod' => 'GET', |
|
| 113 | - 'parameters' => array( |
|
| 114 | - 'accountId' => array( |
|
| 115 | - 'location' => 'path', |
|
| 116 | - 'type' => 'integer', |
|
| 117 | - 'required' => true, |
|
| 118 | - ), |
|
| 119 | - ), |
|
| 120 | - ),'list' => array( |
|
| 121 | - 'path' => 'billinginfo', |
|
| 122 | - 'httpMethod' => 'GET', |
|
| 123 | - 'parameters' => array(), |
|
| 124 | - ), |
|
| 125 | - ) |
|
| 126 | - ) |
|
| 127 | - ); |
|
| 128 | - $this->budget = new Google_Service_AdExchangeBuyer_Budget_Resource( |
|
| 129 | - $this, |
|
| 130 | - $this->serviceName, |
|
| 131 | - 'budget', |
|
| 132 | - array( |
|
| 133 | - 'methods' => array( |
|
| 134 | - 'get' => array( |
|
| 135 | - 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 136 | - 'httpMethod' => 'GET', |
|
| 137 | - 'parameters' => array( |
|
| 138 | - 'accountId' => array( |
|
| 139 | - 'location' => 'path', |
|
| 140 | - 'type' => 'string', |
|
| 141 | - 'required' => true, |
|
| 142 | - ), |
|
| 143 | - 'billingId' => array( |
|
| 144 | - 'location' => 'path', |
|
| 145 | - 'type' => 'string', |
|
| 146 | - 'required' => true, |
|
| 147 | - ), |
|
| 148 | - ), |
|
| 149 | - ),'patch' => array( |
|
| 150 | - 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 151 | - 'httpMethod' => 'PATCH', |
|
| 152 | - 'parameters' => array( |
|
| 153 | - 'accountId' => array( |
|
| 154 | - 'location' => 'path', |
|
| 155 | - 'type' => 'string', |
|
| 156 | - 'required' => true, |
|
| 157 | - ), |
|
| 158 | - 'billingId' => array( |
|
| 159 | - 'location' => 'path', |
|
| 160 | - 'type' => 'string', |
|
| 161 | - 'required' => true, |
|
| 162 | - ), |
|
| 163 | - ), |
|
| 164 | - ),'update' => array( |
|
| 165 | - 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 166 | - 'httpMethod' => 'PUT', |
|
| 167 | - 'parameters' => array( |
|
| 168 | - 'accountId' => array( |
|
| 169 | - 'location' => 'path', |
|
| 170 | - 'type' => 'string', |
|
| 171 | - 'required' => true, |
|
| 172 | - ), |
|
| 173 | - 'billingId' => array( |
|
| 174 | - 'location' => 'path', |
|
| 175 | - 'type' => 'string', |
|
| 176 | - 'required' => true, |
|
| 177 | - ), |
|
| 178 | - ), |
|
| 179 | - ), |
|
| 180 | - ) |
|
| 181 | - ) |
|
| 182 | - ); |
|
| 183 | - $this->creatives = new Google_Service_AdExchangeBuyer_Creatives_Resource( |
|
| 184 | - $this, |
|
| 185 | - $this->serviceName, |
|
| 186 | - 'creatives', |
|
| 187 | - array( |
|
| 188 | - 'methods' => array( |
|
| 189 | - 'get' => array( |
|
| 190 | - 'path' => 'creatives/{accountId}/{buyerCreativeId}', |
|
| 191 | - 'httpMethod' => 'GET', |
|
| 192 | - 'parameters' => array( |
|
| 193 | - 'accountId' => array( |
|
| 194 | - 'location' => 'path', |
|
| 195 | - 'type' => 'integer', |
|
| 196 | - 'required' => true, |
|
| 197 | - ), |
|
| 198 | - 'buyerCreativeId' => array( |
|
| 199 | - 'location' => 'path', |
|
| 200 | - 'type' => 'string', |
|
| 201 | - 'required' => true, |
|
| 202 | - ), |
|
| 203 | - ), |
|
| 204 | - ),'insert' => array( |
|
| 205 | - 'path' => 'creatives', |
|
| 206 | - 'httpMethod' => 'POST', |
|
| 207 | - 'parameters' => array(), |
|
| 208 | - ),'list' => array( |
|
| 209 | - 'path' => 'creatives', |
|
| 210 | - 'httpMethod' => 'GET', |
|
| 211 | - 'parameters' => array( |
|
| 212 | - 'statusFilter' => array( |
|
| 213 | - 'location' => 'query', |
|
| 214 | - 'type' => 'string', |
|
| 215 | - ), |
|
| 216 | - 'pageToken' => array( |
|
| 217 | - 'location' => 'query', |
|
| 218 | - 'type' => 'string', |
|
| 219 | - ), |
|
| 220 | - 'maxResults' => array( |
|
| 221 | - 'location' => 'query', |
|
| 222 | - 'type' => 'integer', |
|
| 223 | - ), |
|
| 224 | - 'buyerCreativeId' => array( |
|
| 225 | - 'location' => 'query', |
|
| 226 | - 'type' => 'string', |
|
| 227 | - 'repeated' => true, |
|
| 228 | - ), |
|
| 229 | - 'accountId' => array( |
|
| 230 | - 'location' => 'query', |
|
| 231 | - 'type' => 'integer', |
|
| 232 | - 'repeated' => true, |
|
| 233 | - ), |
|
| 234 | - ), |
|
| 235 | - ), |
|
| 236 | - ) |
|
| 237 | - ) |
|
| 238 | - ); |
|
| 239 | - $this->directDeals = new Google_Service_AdExchangeBuyer_DirectDeals_Resource( |
|
| 240 | - $this, |
|
| 241 | - $this->serviceName, |
|
| 242 | - 'directDeals', |
|
| 243 | - array( |
|
| 244 | - 'methods' => array( |
|
| 245 | - 'get' => array( |
|
| 246 | - 'path' => 'directdeals/{id}', |
|
| 247 | - 'httpMethod' => 'GET', |
|
| 248 | - 'parameters' => array( |
|
| 249 | - 'id' => array( |
|
| 250 | - 'location' => 'path', |
|
| 251 | - 'type' => 'string', |
|
| 252 | - 'required' => true, |
|
| 253 | - ), |
|
| 254 | - ), |
|
| 255 | - ),'list' => array( |
|
| 256 | - 'path' => 'directdeals', |
|
| 257 | - 'httpMethod' => 'GET', |
|
| 258 | - 'parameters' => array(), |
|
| 259 | - ), |
|
| 260 | - ) |
|
| 261 | - ) |
|
| 262 | - ); |
|
| 263 | - $this->performanceReport = new Google_Service_AdExchangeBuyer_PerformanceReport_Resource( |
|
| 264 | - $this, |
|
| 265 | - $this->serviceName, |
|
| 266 | - 'performanceReport', |
|
| 267 | - array( |
|
| 268 | - 'methods' => array( |
|
| 269 | - 'list' => array( |
|
| 270 | - 'path' => 'performancereport', |
|
| 271 | - 'httpMethod' => 'GET', |
|
| 272 | - 'parameters' => array( |
|
| 273 | - 'accountId' => array( |
|
| 274 | - 'location' => 'query', |
|
| 275 | - 'type' => 'string', |
|
| 276 | - 'required' => true, |
|
| 277 | - ), |
|
| 278 | - 'endDateTime' => array( |
|
| 279 | - 'location' => 'query', |
|
| 280 | - 'type' => 'string', |
|
| 281 | - 'required' => true, |
|
| 282 | - ), |
|
| 283 | - 'startDateTime' => array( |
|
| 284 | - 'location' => 'query', |
|
| 285 | - 'type' => 'string', |
|
| 286 | - 'required' => true, |
|
| 287 | - ), |
|
| 288 | - 'pageToken' => array( |
|
| 289 | - 'location' => 'query', |
|
| 290 | - 'type' => 'string', |
|
| 291 | - ), |
|
| 292 | - 'maxResults' => array( |
|
| 293 | - 'location' => 'query', |
|
| 294 | - 'type' => 'integer', |
|
| 295 | - ), |
|
| 296 | - ), |
|
| 297 | - ), |
|
| 298 | - ) |
|
| 299 | - ) |
|
| 300 | - ); |
|
| 301 | - $this->pretargetingConfig = new Google_Service_AdExchangeBuyer_PretargetingConfig_Resource( |
|
| 302 | - $this, |
|
| 303 | - $this->serviceName, |
|
| 304 | - 'pretargetingConfig', |
|
| 305 | - array( |
|
| 306 | - 'methods' => array( |
|
| 307 | - 'delete' => array( |
|
| 308 | - 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 309 | - 'httpMethod' => 'DELETE', |
|
| 310 | - 'parameters' => array( |
|
| 311 | - 'accountId' => array( |
|
| 312 | - 'location' => 'path', |
|
| 313 | - 'type' => 'string', |
|
| 314 | - 'required' => true, |
|
| 315 | - ), |
|
| 316 | - 'configId' => array( |
|
| 317 | - 'location' => 'path', |
|
| 318 | - 'type' => 'string', |
|
| 319 | - 'required' => true, |
|
| 320 | - ), |
|
| 321 | - ), |
|
| 322 | - ),'get' => array( |
|
| 323 | - 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 324 | - 'httpMethod' => 'GET', |
|
| 325 | - 'parameters' => array( |
|
| 326 | - 'accountId' => array( |
|
| 327 | - 'location' => 'path', |
|
| 328 | - 'type' => 'string', |
|
| 329 | - 'required' => true, |
|
| 330 | - ), |
|
| 331 | - 'configId' => array( |
|
| 332 | - 'location' => 'path', |
|
| 333 | - 'type' => 'string', |
|
| 334 | - 'required' => true, |
|
| 335 | - ), |
|
| 336 | - ), |
|
| 337 | - ),'insert' => array( |
|
| 338 | - 'path' => 'pretargetingconfigs/{accountId}', |
|
| 339 | - 'httpMethod' => 'POST', |
|
| 340 | - 'parameters' => array( |
|
| 341 | - 'accountId' => array( |
|
| 342 | - 'location' => 'path', |
|
| 343 | - 'type' => 'string', |
|
| 344 | - 'required' => true, |
|
| 345 | - ), |
|
| 346 | - ), |
|
| 347 | - ),'list' => array( |
|
| 348 | - 'path' => 'pretargetingconfigs/{accountId}', |
|
| 349 | - 'httpMethod' => 'GET', |
|
| 350 | - 'parameters' => array( |
|
| 351 | - 'accountId' => array( |
|
| 352 | - 'location' => 'path', |
|
| 353 | - 'type' => 'string', |
|
| 354 | - 'required' => true, |
|
| 355 | - ), |
|
| 356 | - ), |
|
| 357 | - ),'patch' => array( |
|
| 358 | - 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 359 | - 'httpMethod' => 'PATCH', |
|
| 360 | - 'parameters' => array( |
|
| 361 | - 'accountId' => array( |
|
| 362 | - 'location' => 'path', |
|
| 363 | - 'type' => 'string', |
|
| 364 | - 'required' => true, |
|
| 365 | - ), |
|
| 366 | - 'configId' => array( |
|
| 367 | - 'location' => 'path', |
|
| 368 | - 'type' => 'string', |
|
| 369 | - 'required' => true, |
|
| 370 | - ), |
|
| 371 | - ), |
|
| 372 | - ),'update' => array( |
|
| 373 | - 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 374 | - 'httpMethod' => 'PUT', |
|
| 375 | - 'parameters' => array( |
|
| 376 | - 'accountId' => array( |
|
| 377 | - 'location' => 'path', |
|
| 378 | - 'type' => 'string', |
|
| 379 | - 'required' => true, |
|
| 380 | - ), |
|
| 381 | - 'configId' => array( |
|
| 382 | - 'location' => 'path', |
|
| 383 | - 'type' => 'string', |
|
| 384 | - 'required' => true, |
|
| 385 | - ), |
|
| 386 | - ), |
|
| 387 | - ), |
|
| 388 | - ) |
|
| 389 | - ) |
|
| 390 | - ); |
|
| 54 | + parent::__construct($client); |
|
| 55 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 56 | + $this->servicePath = 'adexchangebuyer/v1.3/'; |
|
| 57 | + $this->version = 'v1.3'; |
|
| 58 | + $this->serviceName = 'adexchangebuyer'; |
|
| 59 | + |
|
| 60 | + $this->accounts = new Google_Service_AdExchangeBuyer_Accounts_Resource( |
|
| 61 | + $this, |
|
| 62 | + $this->serviceName, |
|
| 63 | + 'accounts', |
|
| 64 | + array( |
|
| 65 | + 'methods' => array( |
|
| 66 | + 'get' => array( |
|
| 67 | + 'path' => 'accounts/{id}', |
|
| 68 | + 'httpMethod' => 'GET', |
|
| 69 | + 'parameters' => array( |
|
| 70 | + 'id' => array( |
|
| 71 | + 'location' => 'path', |
|
| 72 | + 'type' => 'integer', |
|
| 73 | + 'required' => true, |
|
| 74 | + ), |
|
| 75 | + ), |
|
| 76 | + ),'list' => array( |
|
| 77 | + 'path' => 'accounts', |
|
| 78 | + 'httpMethod' => 'GET', |
|
| 79 | + 'parameters' => array(), |
|
| 80 | + ),'patch' => array( |
|
| 81 | + 'path' => 'accounts/{id}', |
|
| 82 | + 'httpMethod' => 'PATCH', |
|
| 83 | + 'parameters' => array( |
|
| 84 | + 'id' => array( |
|
| 85 | + 'location' => 'path', |
|
| 86 | + 'type' => 'integer', |
|
| 87 | + 'required' => true, |
|
| 88 | + ), |
|
| 89 | + ), |
|
| 90 | + ),'update' => array( |
|
| 91 | + 'path' => 'accounts/{id}', |
|
| 92 | + 'httpMethod' => 'PUT', |
|
| 93 | + 'parameters' => array( |
|
| 94 | + 'id' => array( |
|
| 95 | + 'location' => 'path', |
|
| 96 | + 'type' => 'integer', |
|
| 97 | + 'required' => true, |
|
| 98 | + ), |
|
| 99 | + ), |
|
| 100 | + ), |
|
| 101 | + ) |
|
| 102 | + ) |
|
| 103 | + ); |
|
| 104 | + $this->billingInfo = new Google_Service_AdExchangeBuyer_BillingInfo_Resource( |
|
| 105 | + $this, |
|
| 106 | + $this->serviceName, |
|
| 107 | + 'billingInfo', |
|
| 108 | + array( |
|
| 109 | + 'methods' => array( |
|
| 110 | + 'get' => array( |
|
| 111 | + 'path' => 'billinginfo/{accountId}', |
|
| 112 | + 'httpMethod' => 'GET', |
|
| 113 | + 'parameters' => array( |
|
| 114 | + 'accountId' => array( |
|
| 115 | + 'location' => 'path', |
|
| 116 | + 'type' => 'integer', |
|
| 117 | + 'required' => true, |
|
| 118 | + ), |
|
| 119 | + ), |
|
| 120 | + ),'list' => array( |
|
| 121 | + 'path' => 'billinginfo', |
|
| 122 | + 'httpMethod' => 'GET', |
|
| 123 | + 'parameters' => array(), |
|
| 124 | + ), |
|
| 125 | + ) |
|
| 126 | + ) |
|
| 127 | + ); |
|
| 128 | + $this->budget = new Google_Service_AdExchangeBuyer_Budget_Resource( |
|
| 129 | + $this, |
|
| 130 | + $this->serviceName, |
|
| 131 | + 'budget', |
|
| 132 | + array( |
|
| 133 | + 'methods' => array( |
|
| 134 | + 'get' => array( |
|
| 135 | + 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 136 | + 'httpMethod' => 'GET', |
|
| 137 | + 'parameters' => array( |
|
| 138 | + 'accountId' => array( |
|
| 139 | + 'location' => 'path', |
|
| 140 | + 'type' => 'string', |
|
| 141 | + 'required' => true, |
|
| 142 | + ), |
|
| 143 | + 'billingId' => array( |
|
| 144 | + 'location' => 'path', |
|
| 145 | + 'type' => 'string', |
|
| 146 | + 'required' => true, |
|
| 147 | + ), |
|
| 148 | + ), |
|
| 149 | + ),'patch' => array( |
|
| 150 | + 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 151 | + 'httpMethod' => 'PATCH', |
|
| 152 | + 'parameters' => array( |
|
| 153 | + 'accountId' => array( |
|
| 154 | + 'location' => 'path', |
|
| 155 | + 'type' => 'string', |
|
| 156 | + 'required' => true, |
|
| 157 | + ), |
|
| 158 | + 'billingId' => array( |
|
| 159 | + 'location' => 'path', |
|
| 160 | + 'type' => 'string', |
|
| 161 | + 'required' => true, |
|
| 162 | + ), |
|
| 163 | + ), |
|
| 164 | + ),'update' => array( |
|
| 165 | + 'path' => 'billinginfo/{accountId}/{billingId}', |
|
| 166 | + 'httpMethod' => 'PUT', |
|
| 167 | + 'parameters' => array( |
|
| 168 | + 'accountId' => array( |
|
| 169 | + 'location' => 'path', |
|
| 170 | + 'type' => 'string', |
|
| 171 | + 'required' => true, |
|
| 172 | + ), |
|
| 173 | + 'billingId' => array( |
|
| 174 | + 'location' => 'path', |
|
| 175 | + 'type' => 'string', |
|
| 176 | + 'required' => true, |
|
| 177 | + ), |
|
| 178 | + ), |
|
| 179 | + ), |
|
| 180 | + ) |
|
| 181 | + ) |
|
| 182 | + ); |
|
| 183 | + $this->creatives = new Google_Service_AdExchangeBuyer_Creatives_Resource( |
|
| 184 | + $this, |
|
| 185 | + $this->serviceName, |
|
| 186 | + 'creatives', |
|
| 187 | + array( |
|
| 188 | + 'methods' => array( |
|
| 189 | + 'get' => array( |
|
| 190 | + 'path' => 'creatives/{accountId}/{buyerCreativeId}', |
|
| 191 | + 'httpMethod' => 'GET', |
|
| 192 | + 'parameters' => array( |
|
| 193 | + 'accountId' => array( |
|
| 194 | + 'location' => 'path', |
|
| 195 | + 'type' => 'integer', |
|
| 196 | + 'required' => true, |
|
| 197 | + ), |
|
| 198 | + 'buyerCreativeId' => array( |
|
| 199 | + 'location' => 'path', |
|
| 200 | + 'type' => 'string', |
|
| 201 | + 'required' => true, |
|
| 202 | + ), |
|
| 203 | + ), |
|
| 204 | + ),'insert' => array( |
|
| 205 | + 'path' => 'creatives', |
|
| 206 | + 'httpMethod' => 'POST', |
|
| 207 | + 'parameters' => array(), |
|
| 208 | + ),'list' => array( |
|
| 209 | + 'path' => 'creatives', |
|
| 210 | + 'httpMethod' => 'GET', |
|
| 211 | + 'parameters' => array( |
|
| 212 | + 'statusFilter' => array( |
|
| 213 | + 'location' => 'query', |
|
| 214 | + 'type' => 'string', |
|
| 215 | + ), |
|
| 216 | + 'pageToken' => array( |
|
| 217 | + 'location' => 'query', |
|
| 218 | + 'type' => 'string', |
|
| 219 | + ), |
|
| 220 | + 'maxResults' => array( |
|
| 221 | + 'location' => 'query', |
|
| 222 | + 'type' => 'integer', |
|
| 223 | + ), |
|
| 224 | + 'buyerCreativeId' => array( |
|
| 225 | + 'location' => 'query', |
|
| 226 | + 'type' => 'string', |
|
| 227 | + 'repeated' => true, |
|
| 228 | + ), |
|
| 229 | + 'accountId' => array( |
|
| 230 | + 'location' => 'query', |
|
| 231 | + 'type' => 'integer', |
|
| 232 | + 'repeated' => true, |
|
| 233 | + ), |
|
| 234 | + ), |
|
| 235 | + ), |
|
| 236 | + ) |
|
| 237 | + ) |
|
| 238 | + ); |
|
| 239 | + $this->directDeals = new Google_Service_AdExchangeBuyer_DirectDeals_Resource( |
|
| 240 | + $this, |
|
| 241 | + $this->serviceName, |
|
| 242 | + 'directDeals', |
|
| 243 | + array( |
|
| 244 | + 'methods' => array( |
|
| 245 | + 'get' => array( |
|
| 246 | + 'path' => 'directdeals/{id}', |
|
| 247 | + 'httpMethod' => 'GET', |
|
| 248 | + 'parameters' => array( |
|
| 249 | + 'id' => array( |
|
| 250 | + 'location' => 'path', |
|
| 251 | + 'type' => 'string', |
|
| 252 | + 'required' => true, |
|
| 253 | + ), |
|
| 254 | + ), |
|
| 255 | + ),'list' => array( |
|
| 256 | + 'path' => 'directdeals', |
|
| 257 | + 'httpMethod' => 'GET', |
|
| 258 | + 'parameters' => array(), |
|
| 259 | + ), |
|
| 260 | + ) |
|
| 261 | + ) |
|
| 262 | + ); |
|
| 263 | + $this->performanceReport = new Google_Service_AdExchangeBuyer_PerformanceReport_Resource( |
|
| 264 | + $this, |
|
| 265 | + $this->serviceName, |
|
| 266 | + 'performanceReport', |
|
| 267 | + array( |
|
| 268 | + 'methods' => array( |
|
| 269 | + 'list' => array( |
|
| 270 | + 'path' => 'performancereport', |
|
| 271 | + 'httpMethod' => 'GET', |
|
| 272 | + 'parameters' => array( |
|
| 273 | + 'accountId' => array( |
|
| 274 | + 'location' => 'query', |
|
| 275 | + 'type' => 'string', |
|
| 276 | + 'required' => true, |
|
| 277 | + ), |
|
| 278 | + 'endDateTime' => array( |
|
| 279 | + 'location' => 'query', |
|
| 280 | + 'type' => 'string', |
|
| 281 | + 'required' => true, |
|
| 282 | + ), |
|
| 283 | + 'startDateTime' => array( |
|
| 284 | + 'location' => 'query', |
|
| 285 | + 'type' => 'string', |
|
| 286 | + 'required' => true, |
|
| 287 | + ), |
|
| 288 | + 'pageToken' => array( |
|
| 289 | + 'location' => 'query', |
|
| 290 | + 'type' => 'string', |
|
| 291 | + ), |
|
| 292 | + 'maxResults' => array( |
|
| 293 | + 'location' => 'query', |
|
| 294 | + 'type' => 'integer', |
|
| 295 | + ), |
|
| 296 | + ), |
|
| 297 | + ), |
|
| 298 | + ) |
|
| 299 | + ) |
|
| 300 | + ); |
|
| 301 | + $this->pretargetingConfig = new Google_Service_AdExchangeBuyer_PretargetingConfig_Resource( |
|
| 302 | + $this, |
|
| 303 | + $this->serviceName, |
|
| 304 | + 'pretargetingConfig', |
|
| 305 | + array( |
|
| 306 | + 'methods' => array( |
|
| 307 | + 'delete' => array( |
|
| 308 | + 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 309 | + 'httpMethod' => 'DELETE', |
|
| 310 | + 'parameters' => array( |
|
| 311 | + 'accountId' => array( |
|
| 312 | + 'location' => 'path', |
|
| 313 | + 'type' => 'string', |
|
| 314 | + 'required' => true, |
|
| 315 | + ), |
|
| 316 | + 'configId' => array( |
|
| 317 | + 'location' => 'path', |
|
| 318 | + 'type' => 'string', |
|
| 319 | + 'required' => true, |
|
| 320 | + ), |
|
| 321 | + ), |
|
| 322 | + ),'get' => array( |
|
| 323 | + 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 324 | + 'httpMethod' => 'GET', |
|
| 325 | + 'parameters' => array( |
|
| 326 | + 'accountId' => array( |
|
| 327 | + 'location' => 'path', |
|
| 328 | + 'type' => 'string', |
|
| 329 | + 'required' => true, |
|
| 330 | + ), |
|
| 331 | + 'configId' => array( |
|
| 332 | + 'location' => 'path', |
|
| 333 | + 'type' => 'string', |
|
| 334 | + 'required' => true, |
|
| 335 | + ), |
|
| 336 | + ), |
|
| 337 | + ),'insert' => array( |
|
| 338 | + 'path' => 'pretargetingconfigs/{accountId}', |
|
| 339 | + 'httpMethod' => 'POST', |
|
| 340 | + 'parameters' => array( |
|
| 341 | + 'accountId' => array( |
|
| 342 | + 'location' => 'path', |
|
| 343 | + 'type' => 'string', |
|
| 344 | + 'required' => true, |
|
| 345 | + ), |
|
| 346 | + ), |
|
| 347 | + ),'list' => array( |
|
| 348 | + 'path' => 'pretargetingconfigs/{accountId}', |
|
| 349 | + 'httpMethod' => 'GET', |
|
| 350 | + 'parameters' => array( |
|
| 351 | + 'accountId' => array( |
|
| 352 | + 'location' => 'path', |
|
| 353 | + 'type' => 'string', |
|
| 354 | + 'required' => true, |
|
| 355 | + ), |
|
| 356 | + ), |
|
| 357 | + ),'patch' => array( |
|
| 358 | + 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 359 | + 'httpMethod' => 'PATCH', |
|
| 360 | + 'parameters' => array( |
|
| 361 | + 'accountId' => array( |
|
| 362 | + 'location' => 'path', |
|
| 363 | + 'type' => 'string', |
|
| 364 | + 'required' => true, |
|
| 365 | + ), |
|
| 366 | + 'configId' => array( |
|
| 367 | + 'location' => 'path', |
|
| 368 | + 'type' => 'string', |
|
| 369 | + 'required' => true, |
|
| 370 | + ), |
|
| 371 | + ), |
|
| 372 | + ),'update' => array( |
|
| 373 | + 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
|
| 374 | + 'httpMethod' => 'PUT', |
|
| 375 | + 'parameters' => array( |
|
| 376 | + 'accountId' => array( |
|
| 377 | + 'location' => 'path', |
|
| 378 | + 'type' => 'string', |
|
| 379 | + 'required' => true, |
|
| 380 | + ), |
|
| 381 | + 'configId' => array( |
|
| 382 | + 'location' => 'path', |
|
| 383 | + 'type' => 'string', |
|
| 384 | + 'required' => true, |
|
| 385 | + ), |
|
| 386 | + ), |
|
| 387 | + ), |
|
| 388 | + ) |
|
| 389 | + ) |
|
| 390 | + ); |
|
| 391 | 391 | } |
| 392 | 392 | } |
| 393 | 393 | |
@@ -412,9 +412,9 @@ discard block |
||
| 412 | 412 | */ |
| 413 | 413 | public function get($id, $optParams = array()) |
| 414 | 414 | { |
| 415 | - $params = array('id' => $id); |
|
| 416 | - $params = array_merge($params, $optParams); |
|
| 417 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 415 | + $params = array('id' => $id); |
|
| 416 | + $params = array_merge($params, $optParams); |
|
| 417 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | /** |
@@ -425,9 +425,9 @@ discard block |
||
| 425 | 425 | */ |
| 426 | 426 | public function listAccounts($optParams = array()) |
| 427 | 427 | { |
| 428 | - $params = array(); |
|
| 429 | - $params = array_merge($params, $optParams); |
|
| 430 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_AccountsList"); |
|
| 428 | + $params = array(); |
|
| 429 | + $params = array_merge($params, $optParams); |
|
| 430 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_AccountsList"); |
|
| 431 | 431 | } |
| 432 | 432 | |
| 433 | 433 | /** |
@@ -441,9 +441,9 @@ discard block |
||
| 441 | 441 | */ |
| 442 | 442 | public function patch($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array()) |
| 443 | 443 | { |
| 444 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 445 | - $params = array_merge($params, $optParams); |
|
| 446 | - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 444 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 445 | + $params = array_merge($params, $optParams); |
|
| 446 | + return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | /** |
@@ -456,9 +456,9 @@ discard block |
||
| 456 | 456 | */ |
| 457 | 457 | public function update($id, Google_Service_AdExchangeBuyer_Account $postBody, $optParams = array()) |
| 458 | 458 | { |
| 459 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 460 | - $params = array_merge($params, $optParams); |
|
| 461 | - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 459 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 460 | + $params = array_merge($params, $optParams); |
|
| 461 | + return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Account"); |
|
| 462 | 462 | } |
| 463 | 463 | } |
| 464 | 464 | |
@@ -483,9 +483,9 @@ discard block |
||
| 483 | 483 | */ |
| 484 | 484 | public function get($accountId, $optParams = array()) |
| 485 | 485 | { |
| 486 | - $params = array('accountId' => $accountId); |
|
| 487 | - $params = array_merge($params, $optParams); |
|
| 488 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_BillingInfo"); |
|
| 486 | + $params = array('accountId' => $accountId); |
|
| 487 | + $params = array_merge($params, $optParams); |
|
| 488 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_BillingInfo"); |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | 491 | /** |
@@ -497,9 +497,9 @@ discard block |
||
| 497 | 497 | */ |
| 498 | 498 | public function listBillingInfo($optParams = array()) |
| 499 | 499 | { |
| 500 | - $params = array(); |
|
| 501 | - $params = array_merge($params, $optParams); |
|
| 502 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_BillingInfoList"); |
|
| 500 | + $params = array(); |
|
| 501 | + $params = array_merge($params, $optParams); |
|
| 502 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_BillingInfoList"); |
|
| 503 | 503 | } |
| 504 | 504 | } |
| 505 | 505 | |
@@ -525,9 +525,9 @@ discard block |
||
| 525 | 525 | */ |
| 526 | 526 | public function get($accountId, $billingId, $optParams = array()) |
| 527 | 527 | { |
| 528 | - $params = array('accountId' => $accountId, 'billingId' => $billingId); |
|
| 529 | - $params = array_merge($params, $optParams); |
|
| 530 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 528 | + $params = array('accountId' => $accountId, 'billingId' => $billingId); |
|
| 529 | + $params = array_merge($params, $optParams); |
|
| 530 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 531 | 531 | } |
| 532 | 532 | |
| 533 | 533 | /** |
@@ -545,9 +545,9 @@ discard block |
||
| 545 | 545 | */ |
| 546 | 546 | public function patch($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array()) |
| 547 | 547 | { |
| 548 | - $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); |
|
| 549 | - $params = array_merge($params, $optParams); |
|
| 550 | - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 548 | + $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); |
|
| 549 | + $params = array_merge($params, $optParams); |
|
| 550 | + return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 551 | 551 | } |
| 552 | 552 | |
| 553 | 553 | /** |
@@ -565,9 +565,9 @@ discard block |
||
| 565 | 565 | */ |
| 566 | 566 | public function update($accountId, $billingId, Google_Service_AdExchangeBuyer_Budget $postBody, $optParams = array()) |
| 567 | 567 | { |
| 568 | - $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); |
|
| 569 | - $params = array_merge($params, $optParams); |
|
| 570 | - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 568 | + $params = array('accountId' => $accountId, 'billingId' => $billingId, 'postBody' => $postBody); |
|
| 569 | + $params = array_merge($params, $optParams); |
|
| 570 | + return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_Budget"); |
|
| 571 | 571 | } |
| 572 | 572 | } |
| 573 | 573 | |
@@ -593,9 +593,9 @@ discard block |
||
| 593 | 593 | */ |
| 594 | 594 | public function get($accountId, $buyerCreativeId, $optParams = array()) |
| 595 | 595 | { |
| 596 | - $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId); |
|
| 597 | - $params = array_merge($params, $optParams); |
|
| 598 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Creative"); |
|
| 596 | + $params = array('accountId' => $accountId, 'buyerCreativeId' => $buyerCreativeId); |
|
| 597 | + $params = array_merge($params, $optParams); |
|
| 598 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_Creative"); |
|
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | /** |
@@ -607,9 +607,9 @@ discard block |
||
| 607 | 607 | */ |
| 608 | 608 | public function insert(Google_Service_AdExchangeBuyer_Creative $postBody, $optParams = array()) |
| 609 | 609 | { |
| 610 | - $params = array('postBody' => $postBody); |
|
| 611 | - $params = array_merge($params, $optParams); |
|
| 612 | - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_Creative"); |
|
| 610 | + $params = array('postBody' => $postBody); |
|
| 611 | + $params = array_merge($params, $optParams); |
|
| 612 | + return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_Creative"); |
|
| 613 | 613 | } |
| 614 | 614 | |
| 615 | 615 | /** |
@@ -633,9 +633,9 @@ discard block |
||
| 633 | 633 | */ |
| 634 | 634 | public function listCreatives($optParams = array()) |
| 635 | 635 | { |
| 636 | - $params = array(); |
|
| 637 | - $params = array_merge($params, $optParams); |
|
| 638 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_CreativesList"); |
|
| 636 | + $params = array(); |
|
| 637 | + $params = array_merge($params, $optParams); |
|
| 638 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_CreativesList"); |
|
| 639 | 639 | } |
| 640 | 640 | } |
| 641 | 641 | |
@@ -659,9 +659,9 @@ discard block |
||
| 659 | 659 | */ |
| 660 | 660 | public function get($id, $optParams = array()) |
| 661 | 661 | { |
| 662 | - $params = array('id' => $id); |
|
| 663 | - $params = array_merge($params, $optParams); |
|
| 664 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_DirectDeal"); |
|
| 662 | + $params = array('id' => $id); |
|
| 663 | + $params = array_merge($params, $optParams); |
|
| 664 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_DirectDeal"); |
|
| 665 | 665 | } |
| 666 | 666 | |
| 667 | 667 | /** |
@@ -673,9 +673,9 @@ discard block |
||
| 673 | 673 | */ |
| 674 | 674 | public function listDirectDeals($optParams = array()) |
| 675 | 675 | { |
| 676 | - $params = array(); |
|
| 677 | - $params = array_merge($params, $optParams); |
|
| 678 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_DirectDealsList"); |
|
| 676 | + $params = array(); |
|
| 677 | + $params = array_merge($params, $optParams); |
|
| 678 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_DirectDealsList"); |
|
| 679 | 679 | } |
| 680 | 680 | } |
| 681 | 681 | |
@@ -710,9 +710,9 @@ discard block |
||
| 710 | 710 | */ |
| 711 | 711 | public function listPerformanceReport($accountId, $endDateTime, $startDateTime, $optParams = array()) |
| 712 | 712 | { |
| 713 | - $params = array('accountId' => $accountId, 'endDateTime' => $endDateTime, 'startDateTime' => $startDateTime); |
|
| 714 | - $params = array_merge($params, $optParams); |
|
| 715 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PerformanceReportList"); |
|
| 713 | + $params = array('accountId' => $accountId, 'endDateTime' => $endDateTime, 'startDateTime' => $startDateTime); |
|
| 714 | + $params = array_merge($params, $optParams); |
|
| 715 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PerformanceReportList"); |
|
| 716 | 716 | } |
| 717 | 717 | } |
| 718 | 718 | |
@@ -737,9 +737,9 @@ discard block |
||
| 737 | 737 | */ |
| 738 | 738 | public function delete($accountId, $configId, $optParams = array()) |
| 739 | 739 | { |
| 740 | - $params = array('accountId' => $accountId, 'configId' => $configId); |
|
| 741 | - $params = array_merge($params, $optParams); |
|
| 742 | - return $this->call('delete', array($params)); |
|
| 740 | + $params = array('accountId' => $accountId, 'configId' => $configId); |
|
| 741 | + $params = array_merge($params, $optParams); |
|
| 742 | + return $this->call('delete', array($params)); |
|
| 743 | 743 | } |
| 744 | 744 | |
| 745 | 745 | /** |
@@ -752,9 +752,9 @@ discard block |
||
| 752 | 752 | */ |
| 753 | 753 | public function get($accountId, $configId, $optParams = array()) |
| 754 | 754 | { |
| 755 | - $params = array('accountId' => $accountId, 'configId' => $configId); |
|
| 756 | - $params = array_merge($params, $optParams); |
|
| 757 | - return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 755 | + $params = array('accountId' => $accountId, 'configId' => $configId); |
|
| 756 | + $params = array_merge($params, $optParams); |
|
| 757 | + return $this->call('get', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 758 | 758 | } |
| 759 | 759 | |
| 760 | 760 | /** |
@@ -768,9 +768,9 @@ discard block |
||
| 768 | 768 | */ |
| 769 | 769 | public function insert($accountId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) |
| 770 | 770 | { |
| 771 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 772 | - $params = array_merge($params, $optParams); |
|
| 773 | - return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 771 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 772 | + $params = array_merge($params, $optParams); |
|
| 773 | + return $this->call('insert', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 774 | 774 | } |
| 775 | 775 | |
| 776 | 776 | /** |
@@ -783,9 +783,9 @@ discard block |
||
| 783 | 783 | */ |
| 784 | 784 | public function listPretargetingConfig($accountId, $optParams = array()) |
| 785 | 785 | { |
| 786 | - $params = array('accountId' => $accountId); |
|
| 787 | - $params = array_merge($params, $optParams); |
|
| 788 | - return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfigList"); |
|
| 786 | + $params = array('accountId' => $accountId); |
|
| 787 | + $params = array_merge($params, $optParams); |
|
| 788 | + return $this->call('list', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfigList"); |
|
| 789 | 789 | } |
| 790 | 790 | |
| 791 | 791 | /** |
@@ -801,9 +801,9 @@ discard block |
||
| 801 | 801 | */ |
| 802 | 802 | public function patch($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) |
| 803 | 803 | { |
| 804 | - $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); |
|
| 805 | - $params = array_merge($params, $optParams); |
|
| 806 | - return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 804 | + $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); |
|
| 805 | + $params = array_merge($params, $optParams); |
|
| 806 | + return $this->call('patch', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 807 | 807 | } |
| 808 | 808 | |
| 809 | 809 | /** |
@@ -818,9 +818,9 @@ discard block |
||
| 818 | 818 | */ |
| 819 | 819 | public function update($accountId, $configId, Google_Service_AdExchangeBuyer_PretargetingConfig $postBody, $optParams = array()) |
| 820 | 820 | { |
| 821 | - $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); |
|
| 822 | - $params = array_merge($params, $optParams); |
|
| 823 | - return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 821 | + $params = array('accountId' => $accountId, 'configId' => $configId, 'postBody' => $postBody); |
|
| 822 | + $params = array_merge($params, $optParams); |
|
| 823 | + return $this->call('update', array($params), "Google_Service_AdExchangeBuyer_PretargetingConfig"); |
|
| 824 | 824 | } |
| 825 | 825 | } |
| 826 | 826 | |
@@ -845,67 +845,67 @@ discard block |
||
| 845 | 845 | |
| 846 | 846 | public function setBidderLocation($bidderLocation) |
| 847 | 847 | { |
| 848 | - $this->bidderLocation = $bidderLocation; |
|
| 848 | + $this->bidderLocation = $bidderLocation; |
|
| 849 | 849 | } |
| 850 | 850 | public function getBidderLocation() |
| 851 | 851 | { |
| 852 | - return $this->bidderLocation; |
|
| 852 | + return $this->bidderLocation; |
|
| 853 | 853 | } |
| 854 | 854 | public function setCookieMatchingNid($cookieMatchingNid) |
| 855 | 855 | { |
| 856 | - $this->cookieMatchingNid = $cookieMatchingNid; |
|
| 856 | + $this->cookieMatchingNid = $cookieMatchingNid; |
|
| 857 | 857 | } |
| 858 | 858 | public function getCookieMatchingNid() |
| 859 | 859 | { |
| 860 | - return $this->cookieMatchingNid; |
|
| 860 | + return $this->cookieMatchingNid; |
|
| 861 | 861 | } |
| 862 | 862 | public function setCookieMatchingUrl($cookieMatchingUrl) |
| 863 | 863 | { |
| 864 | - $this->cookieMatchingUrl = $cookieMatchingUrl; |
|
| 864 | + $this->cookieMatchingUrl = $cookieMatchingUrl; |
|
| 865 | 865 | } |
| 866 | 866 | public function getCookieMatchingUrl() |
| 867 | 867 | { |
| 868 | - return $this->cookieMatchingUrl; |
|
| 868 | + return $this->cookieMatchingUrl; |
|
| 869 | 869 | } |
| 870 | 870 | public function setId($id) |
| 871 | 871 | { |
| 872 | - $this->id = $id; |
|
| 872 | + $this->id = $id; |
|
| 873 | 873 | } |
| 874 | 874 | public function getId() |
| 875 | 875 | { |
| 876 | - return $this->id; |
|
| 876 | + return $this->id; |
|
| 877 | 877 | } |
| 878 | 878 | public function setKind($kind) |
| 879 | 879 | { |
| 880 | - $this->kind = $kind; |
|
| 880 | + $this->kind = $kind; |
|
| 881 | 881 | } |
| 882 | 882 | public function getKind() |
| 883 | 883 | { |
| 884 | - return $this->kind; |
|
| 884 | + return $this->kind; |
|
| 885 | 885 | } |
| 886 | 886 | public function setMaximumActiveCreatives($maximumActiveCreatives) |
| 887 | 887 | { |
| 888 | - $this->maximumActiveCreatives = $maximumActiveCreatives; |
|
| 888 | + $this->maximumActiveCreatives = $maximumActiveCreatives; |
|
| 889 | 889 | } |
| 890 | 890 | public function getMaximumActiveCreatives() |
| 891 | 891 | { |
| 892 | - return $this->maximumActiveCreatives; |
|
| 892 | + return $this->maximumActiveCreatives; |
|
| 893 | 893 | } |
| 894 | 894 | public function setMaximumTotalQps($maximumTotalQps) |
| 895 | 895 | { |
| 896 | - $this->maximumTotalQps = $maximumTotalQps; |
|
| 896 | + $this->maximumTotalQps = $maximumTotalQps; |
|
| 897 | 897 | } |
| 898 | 898 | public function getMaximumTotalQps() |
| 899 | 899 | { |
| 900 | - return $this->maximumTotalQps; |
|
| 900 | + return $this->maximumTotalQps; |
|
| 901 | 901 | } |
| 902 | 902 | public function setNumberActiveCreatives($numberActiveCreatives) |
| 903 | 903 | { |
| 904 | - $this->numberActiveCreatives = $numberActiveCreatives; |
|
| 904 | + $this->numberActiveCreatives = $numberActiveCreatives; |
|
| 905 | 905 | } |
| 906 | 906 | public function getNumberActiveCreatives() |
| 907 | 907 | { |
| 908 | - return $this->numberActiveCreatives; |
|
| 908 | + return $this->numberActiveCreatives; |
|
| 909 | 909 | } |
| 910 | 910 | } |
| 911 | 911 | |
@@ -920,27 +920,27 @@ discard block |
||
| 920 | 920 | |
| 921 | 921 | public function setMaximumQps($maximumQps) |
| 922 | 922 | { |
| 923 | - $this->maximumQps = $maximumQps; |
|
| 923 | + $this->maximumQps = $maximumQps; |
|
| 924 | 924 | } |
| 925 | 925 | public function getMaximumQps() |
| 926 | 926 | { |
| 927 | - return $this->maximumQps; |
|
| 927 | + return $this->maximumQps; |
|
| 928 | 928 | } |
| 929 | 929 | public function setRegion($region) |
| 930 | 930 | { |
| 931 | - $this->region = $region; |
|
| 931 | + $this->region = $region; |
|
| 932 | 932 | } |
| 933 | 933 | public function getRegion() |
| 934 | 934 | { |
| 935 | - return $this->region; |
|
| 935 | + return $this->region; |
|
| 936 | 936 | } |
| 937 | 937 | public function setUrl($url) |
| 938 | 938 | { |
| 939 | - $this->url = $url; |
|
| 939 | + $this->url = $url; |
|
| 940 | 940 | } |
| 941 | 941 | public function getUrl() |
| 942 | 942 | { |
| 943 | - return $this->url; |
|
| 943 | + return $this->url; |
|
| 944 | 944 | } |
| 945 | 945 | } |
| 946 | 946 | |
@@ -956,19 +956,19 @@ discard block |
||
| 956 | 956 | |
| 957 | 957 | public function setItems($items) |
| 958 | 958 | { |
| 959 | - $this->items = $items; |
|
| 959 | + $this->items = $items; |
|
| 960 | 960 | } |
| 961 | 961 | public function getItems() |
| 962 | 962 | { |
| 963 | - return $this->items; |
|
| 963 | + return $this->items; |
|
| 964 | 964 | } |
| 965 | 965 | public function setKind($kind) |
| 966 | 966 | { |
| 967 | - $this->kind = $kind; |
|
| 967 | + $this->kind = $kind; |
|
| 968 | 968 | } |
| 969 | 969 | public function getKind() |
| 970 | 970 | { |
| 971 | - return $this->kind; |
|
| 971 | + return $this->kind; |
|
| 972 | 972 | } |
| 973 | 973 | } |
| 974 | 974 | |
@@ -985,35 +985,35 @@ discard block |
||
| 985 | 985 | |
| 986 | 986 | public function setAccountId($accountId) |
| 987 | 987 | { |
| 988 | - $this->accountId = $accountId; |
|
| 988 | + $this->accountId = $accountId; |
|
| 989 | 989 | } |
| 990 | 990 | public function getAccountId() |
| 991 | 991 | { |
| 992 | - return $this->accountId; |
|
| 992 | + return $this->accountId; |
|
| 993 | 993 | } |
| 994 | 994 | public function setAccountName($accountName) |
| 995 | 995 | { |
| 996 | - $this->accountName = $accountName; |
|
| 996 | + $this->accountName = $accountName; |
|
| 997 | 997 | } |
| 998 | 998 | public function getAccountName() |
| 999 | 999 | { |
| 1000 | - return $this->accountName; |
|
| 1000 | + return $this->accountName; |
|
| 1001 | 1001 | } |
| 1002 | 1002 | public function setBillingId($billingId) |
| 1003 | 1003 | { |
| 1004 | - $this->billingId = $billingId; |
|
| 1004 | + $this->billingId = $billingId; |
|
| 1005 | 1005 | } |
| 1006 | 1006 | public function getBillingId() |
| 1007 | 1007 | { |
| 1008 | - return $this->billingId; |
|
| 1008 | + return $this->billingId; |
|
| 1009 | 1009 | } |
| 1010 | 1010 | public function setKind($kind) |
| 1011 | 1011 | { |
| 1012 | - $this->kind = $kind; |
|
| 1012 | + $this->kind = $kind; |
|
| 1013 | 1013 | } |
| 1014 | 1014 | public function getKind() |
| 1015 | 1015 | { |
| 1016 | - return $this->kind; |
|
| 1016 | + return $this->kind; |
|
| 1017 | 1017 | } |
| 1018 | 1018 | } |
| 1019 | 1019 | |
@@ -1029,19 +1029,19 @@ discard block |
||
| 1029 | 1029 | |
| 1030 | 1030 | public function setItems($items) |
| 1031 | 1031 | { |
| 1032 | - $this->items = $items; |
|
| 1032 | + $this->items = $items; |
|
| 1033 | 1033 | } |
| 1034 | 1034 | public function getItems() |
| 1035 | 1035 | { |
| 1036 | - return $this->items; |
|
| 1036 | + return $this->items; |
|
| 1037 | 1037 | } |
| 1038 | 1038 | public function setKind($kind) |
| 1039 | 1039 | { |
| 1040 | - $this->kind = $kind; |
|
| 1040 | + $this->kind = $kind; |
|
| 1041 | 1041 | } |
| 1042 | 1042 | public function getKind() |
| 1043 | 1043 | { |
| 1044 | - return $this->kind; |
|
| 1044 | + return $this->kind; |
|
| 1045 | 1045 | } |
| 1046 | 1046 | } |
| 1047 | 1047 | |
@@ -1059,51 +1059,51 @@ discard block |
||
| 1059 | 1059 | |
| 1060 | 1060 | public function setAccountId($accountId) |
| 1061 | 1061 | { |
| 1062 | - $this->accountId = $accountId; |
|
| 1062 | + $this->accountId = $accountId; |
|
| 1063 | 1063 | } |
| 1064 | 1064 | public function getAccountId() |
| 1065 | 1065 | { |
| 1066 | - return $this->accountId; |
|
| 1066 | + return $this->accountId; |
|
| 1067 | 1067 | } |
| 1068 | 1068 | public function setBillingId($billingId) |
| 1069 | 1069 | { |
| 1070 | - $this->billingId = $billingId; |
|
| 1070 | + $this->billingId = $billingId; |
|
| 1071 | 1071 | } |
| 1072 | 1072 | public function getBillingId() |
| 1073 | 1073 | { |
| 1074 | - return $this->billingId; |
|
| 1074 | + return $this->billingId; |
|
| 1075 | 1075 | } |
| 1076 | 1076 | public function setBudgetAmount($budgetAmount) |
| 1077 | 1077 | { |
| 1078 | - $this->budgetAmount = $budgetAmount; |
|
| 1078 | + $this->budgetAmount = $budgetAmount; |
|
| 1079 | 1079 | } |
| 1080 | 1080 | public function getBudgetAmount() |
| 1081 | 1081 | { |
| 1082 | - return $this->budgetAmount; |
|
| 1082 | + return $this->budgetAmount; |
|
| 1083 | 1083 | } |
| 1084 | 1084 | public function setCurrencyCode($currencyCode) |
| 1085 | 1085 | { |
| 1086 | - $this->currencyCode = $currencyCode; |
|
| 1086 | + $this->currencyCode = $currencyCode; |
|
| 1087 | 1087 | } |
| 1088 | 1088 | public function getCurrencyCode() |
| 1089 | 1089 | { |
| 1090 | - return $this->currencyCode; |
|
| 1090 | + return $this->currencyCode; |
|
| 1091 | 1091 | } |
| 1092 | 1092 | public function setId($id) |
| 1093 | 1093 | { |
| 1094 | - $this->id = $id; |
|
| 1094 | + $this->id = $id; |
|
| 1095 | 1095 | } |
| 1096 | 1096 | public function getId() |
| 1097 | 1097 | { |
| 1098 | - return $this->id; |
|
| 1098 | + return $this->id; |
|
| 1099 | 1099 | } |
| 1100 | 1100 | public function setKind($kind) |
| 1101 | 1101 | { |
| 1102 | - $this->kind = $kind; |
|
| 1102 | + $this->kind = $kind; |
|
| 1103 | 1103 | } |
| 1104 | 1104 | public function getKind() |
| 1105 | 1105 | { |
| 1106 | - return $this->kind; |
|
| 1106 | + return $this->kind; |
|
| 1107 | 1107 | } |
| 1108 | 1108 | } |
| 1109 | 1109 | |
@@ -1111,7 +1111,7 @@ discard block |
||
| 1111 | 1111 | { |
| 1112 | 1112 | protected $collection_key = 'vendorType'; |
| 1113 | 1113 | protected $internal_gapi_mappings = array( |
| 1114 | - "hTMLSnippet" => "HTMLSnippet", |
|
| 1114 | + "hTMLSnippet" => "HTMLSnippet", |
|
| 1115 | 1115 | ); |
| 1116 | 1116 | public $hTMLSnippet; |
| 1117 | 1117 | public $accountId; |
@@ -1140,163 +1140,163 @@ discard block |
||
| 1140 | 1140 | |
| 1141 | 1141 | public function setHTMLSnippet($hTMLSnippet) |
| 1142 | 1142 | { |
| 1143 | - $this->hTMLSnippet = $hTMLSnippet; |
|
| 1143 | + $this->hTMLSnippet = $hTMLSnippet; |
|
| 1144 | 1144 | } |
| 1145 | 1145 | public function getHTMLSnippet() |
| 1146 | 1146 | { |
| 1147 | - return $this->hTMLSnippet; |
|
| 1147 | + return $this->hTMLSnippet; |
|
| 1148 | 1148 | } |
| 1149 | 1149 | public function setAccountId($accountId) |
| 1150 | 1150 | { |
| 1151 | - $this->accountId = $accountId; |
|
| 1151 | + $this->accountId = $accountId; |
|
| 1152 | 1152 | } |
| 1153 | 1153 | public function getAccountId() |
| 1154 | 1154 | { |
| 1155 | - return $this->accountId; |
|
| 1155 | + return $this->accountId; |
|
| 1156 | 1156 | } |
| 1157 | 1157 | public function setAdvertiserId($advertiserId) |
| 1158 | 1158 | { |
| 1159 | - $this->advertiserId = $advertiserId; |
|
| 1159 | + $this->advertiserId = $advertiserId; |
|
| 1160 | 1160 | } |
| 1161 | 1161 | public function getAdvertiserId() |
| 1162 | 1162 | { |
| 1163 | - return $this->advertiserId; |
|
| 1163 | + return $this->advertiserId; |
|
| 1164 | 1164 | } |
| 1165 | 1165 | public function setAdvertiserName($advertiserName) |
| 1166 | 1166 | { |
| 1167 | - $this->advertiserName = $advertiserName; |
|
| 1167 | + $this->advertiserName = $advertiserName; |
|
| 1168 | 1168 | } |
| 1169 | 1169 | public function getAdvertiserName() |
| 1170 | 1170 | { |
| 1171 | - return $this->advertiserName; |
|
| 1171 | + return $this->advertiserName; |
|
| 1172 | 1172 | } |
| 1173 | 1173 | public function setAgencyId($agencyId) |
| 1174 | 1174 | { |
| 1175 | - $this->agencyId = $agencyId; |
|
| 1175 | + $this->agencyId = $agencyId; |
|
| 1176 | 1176 | } |
| 1177 | 1177 | public function getAgencyId() |
| 1178 | 1178 | { |
| 1179 | - return $this->agencyId; |
|
| 1179 | + return $this->agencyId; |
|
| 1180 | 1180 | } |
| 1181 | 1181 | public function setAttribute($attribute) |
| 1182 | 1182 | { |
| 1183 | - $this->attribute = $attribute; |
|
| 1183 | + $this->attribute = $attribute; |
|
| 1184 | 1184 | } |
| 1185 | 1185 | public function getAttribute() |
| 1186 | 1186 | { |
| 1187 | - return $this->attribute; |
|
| 1187 | + return $this->attribute; |
|
| 1188 | 1188 | } |
| 1189 | 1189 | public function setBuyerCreativeId($buyerCreativeId) |
| 1190 | 1190 | { |
| 1191 | - $this->buyerCreativeId = $buyerCreativeId; |
|
| 1191 | + $this->buyerCreativeId = $buyerCreativeId; |
|
| 1192 | 1192 | } |
| 1193 | 1193 | public function getBuyerCreativeId() |
| 1194 | 1194 | { |
| 1195 | - return $this->buyerCreativeId; |
|
| 1195 | + return $this->buyerCreativeId; |
|
| 1196 | 1196 | } |
| 1197 | 1197 | public function setClickThroughUrl($clickThroughUrl) |
| 1198 | 1198 | { |
| 1199 | - $this->clickThroughUrl = $clickThroughUrl; |
|
| 1199 | + $this->clickThroughUrl = $clickThroughUrl; |
|
| 1200 | 1200 | } |
| 1201 | 1201 | public function getClickThroughUrl() |
| 1202 | 1202 | { |
| 1203 | - return $this->clickThroughUrl; |
|
| 1203 | + return $this->clickThroughUrl; |
|
| 1204 | 1204 | } |
| 1205 | 1205 | public function setCorrections($corrections) |
| 1206 | 1206 | { |
| 1207 | - $this->corrections = $corrections; |
|
| 1207 | + $this->corrections = $corrections; |
|
| 1208 | 1208 | } |
| 1209 | 1209 | public function getCorrections() |
| 1210 | 1210 | { |
| 1211 | - return $this->corrections; |
|
| 1211 | + return $this->corrections; |
|
| 1212 | 1212 | } |
| 1213 | 1213 | public function setDisapprovalReasons($disapprovalReasons) |
| 1214 | 1214 | { |
| 1215 | - $this->disapprovalReasons = $disapprovalReasons; |
|
| 1215 | + $this->disapprovalReasons = $disapprovalReasons; |
|
| 1216 | 1216 | } |
| 1217 | 1217 | public function getDisapprovalReasons() |
| 1218 | 1218 | { |
| 1219 | - return $this->disapprovalReasons; |
|
| 1219 | + return $this->disapprovalReasons; |
|
| 1220 | 1220 | } |
| 1221 | 1221 | public function setFilteringReasons(Google_Service_AdExchangeBuyer_CreativeFilteringReasons $filteringReasons) |
| 1222 | 1222 | { |
| 1223 | - $this->filteringReasons = $filteringReasons; |
|
| 1223 | + $this->filteringReasons = $filteringReasons; |
|
| 1224 | 1224 | } |
| 1225 | 1225 | public function getFilteringReasons() |
| 1226 | 1226 | { |
| 1227 | - return $this->filteringReasons; |
|
| 1227 | + return $this->filteringReasons; |
|
| 1228 | 1228 | } |
| 1229 | 1229 | public function setHeight($height) |
| 1230 | 1230 | { |
| 1231 | - $this->height = $height; |
|
| 1231 | + $this->height = $height; |
|
| 1232 | 1232 | } |
| 1233 | 1233 | public function getHeight() |
| 1234 | 1234 | { |
| 1235 | - return $this->height; |
|
| 1235 | + return $this->height; |
|
| 1236 | 1236 | } |
| 1237 | 1237 | public function setKind($kind) |
| 1238 | 1238 | { |
| 1239 | - $this->kind = $kind; |
|
| 1239 | + $this->kind = $kind; |
|
| 1240 | 1240 | } |
| 1241 | 1241 | public function getKind() |
| 1242 | 1242 | { |
| 1243 | - return $this->kind; |
|
| 1243 | + return $this->kind; |
|
| 1244 | 1244 | } |
| 1245 | 1245 | public function setProductCategories($productCategories) |
| 1246 | 1246 | { |
| 1247 | - $this->productCategories = $productCategories; |
|
| 1247 | + $this->productCategories = $productCategories; |
|
| 1248 | 1248 | } |
| 1249 | 1249 | public function getProductCategories() |
| 1250 | 1250 | { |
| 1251 | - return $this->productCategories; |
|
| 1251 | + return $this->productCategories; |
|
| 1252 | 1252 | } |
| 1253 | 1253 | public function setRestrictedCategories($restrictedCategories) |
| 1254 | 1254 | { |
| 1255 | - $this->restrictedCategories = $restrictedCategories; |
|
| 1255 | + $this->restrictedCategories = $restrictedCategories; |
|
| 1256 | 1256 | } |
| 1257 | 1257 | public function getRestrictedCategories() |
| 1258 | 1258 | { |
| 1259 | - return $this->restrictedCategories; |
|
| 1259 | + return $this->restrictedCategories; |
|
| 1260 | 1260 | } |
| 1261 | 1261 | public function setSensitiveCategories($sensitiveCategories) |
| 1262 | 1262 | { |
| 1263 | - $this->sensitiveCategories = $sensitiveCategories; |
|
| 1263 | + $this->sensitiveCategories = $sensitiveCategories; |
|
| 1264 | 1264 | } |
| 1265 | 1265 | public function getSensitiveCategories() |
| 1266 | 1266 | { |
| 1267 | - return $this->sensitiveCategories; |
|
| 1267 | + return $this->sensitiveCategories; |
|
| 1268 | 1268 | } |
| 1269 | 1269 | public function setStatus($status) |
| 1270 | 1270 | { |
| 1271 | - $this->status = $status; |
|
| 1271 | + $this->status = $status; |
|
| 1272 | 1272 | } |
| 1273 | 1273 | public function getStatus() |
| 1274 | 1274 | { |
| 1275 | - return $this->status; |
|
| 1275 | + return $this->status; |
|
| 1276 | 1276 | } |
| 1277 | 1277 | public function setVendorType($vendorType) |
| 1278 | 1278 | { |
| 1279 | - $this->vendorType = $vendorType; |
|
| 1279 | + $this->vendorType = $vendorType; |
|
| 1280 | 1280 | } |
| 1281 | 1281 | public function getVendorType() |
| 1282 | 1282 | { |
| 1283 | - return $this->vendorType; |
|
| 1283 | + return $this->vendorType; |
|
| 1284 | 1284 | } |
| 1285 | 1285 | public function setVideoURL($videoURL) |
| 1286 | 1286 | { |
| 1287 | - $this->videoURL = $videoURL; |
|
| 1287 | + $this->videoURL = $videoURL; |
|
| 1288 | 1288 | } |
| 1289 | 1289 | public function getVideoURL() |
| 1290 | 1290 | { |
| 1291 | - return $this->videoURL; |
|
| 1291 | + return $this->videoURL; |
|
| 1292 | 1292 | } |
| 1293 | 1293 | public function setWidth($width) |
| 1294 | 1294 | { |
| 1295 | - $this->width = $width; |
|
| 1295 | + $this->width = $width; |
|
| 1296 | 1296 | } |
| 1297 | 1297 | public function getWidth() |
| 1298 | 1298 | { |
| 1299 | - return $this->width; |
|
| 1299 | + return $this->width; |
|
| 1300 | 1300 | } |
| 1301 | 1301 | } |
| 1302 | 1302 | |
@@ -1311,19 +1311,19 @@ discard block |
||
| 1311 | 1311 | |
| 1312 | 1312 | public function setDetails($details) |
| 1313 | 1313 | { |
| 1314 | - $this->details = $details; |
|
| 1314 | + $this->details = $details; |
|
| 1315 | 1315 | } |
| 1316 | 1316 | public function getDetails() |
| 1317 | 1317 | { |
| 1318 | - return $this->details; |
|
| 1318 | + return $this->details; |
|
| 1319 | 1319 | } |
| 1320 | 1320 | public function setReason($reason) |
| 1321 | 1321 | { |
| 1322 | - $this->reason = $reason; |
|
| 1322 | + $this->reason = $reason; |
|
| 1323 | 1323 | } |
| 1324 | 1324 | public function getReason() |
| 1325 | 1325 | { |
| 1326 | - return $this->reason; |
|
| 1326 | + return $this->reason; |
|
| 1327 | 1327 | } |
| 1328 | 1328 | } |
| 1329 | 1329 | |
@@ -1338,19 +1338,19 @@ discard block |
||
| 1338 | 1338 | |
| 1339 | 1339 | public function setDetails($details) |
| 1340 | 1340 | { |
| 1341 | - $this->details = $details; |
|
| 1341 | + $this->details = $details; |
|
| 1342 | 1342 | } |
| 1343 | 1343 | public function getDetails() |
| 1344 | 1344 | { |
| 1345 | - return $this->details; |
|
| 1345 | + return $this->details; |
|
| 1346 | 1346 | } |
| 1347 | 1347 | public function setReason($reason) |
| 1348 | 1348 | { |
| 1349 | - $this->reason = $reason; |
|
| 1349 | + $this->reason = $reason; |
|
| 1350 | 1350 | } |
| 1351 | 1351 | public function getReason() |
| 1352 | 1352 | { |
| 1353 | - return $this->reason; |
|
| 1353 | + return $this->reason; |
|
| 1354 | 1354 | } |
| 1355 | 1355 | } |
| 1356 | 1356 | |
@@ -1366,19 +1366,19 @@ discard block |
||
| 1366 | 1366 | |
| 1367 | 1367 | public function setDate($date) |
| 1368 | 1368 | { |
| 1369 | - $this->date = $date; |
|
| 1369 | + $this->date = $date; |
|
| 1370 | 1370 | } |
| 1371 | 1371 | public function getDate() |
| 1372 | 1372 | { |
| 1373 | - return $this->date; |
|
| 1373 | + return $this->date; |
|
| 1374 | 1374 | } |
| 1375 | 1375 | public function setReasons($reasons) |
| 1376 | 1376 | { |
| 1377 | - $this->reasons = $reasons; |
|
| 1377 | + $this->reasons = $reasons; |
|
| 1378 | 1378 | } |
| 1379 | 1379 | public function getReasons() |
| 1380 | 1380 | { |
| 1381 | - return $this->reasons; |
|
| 1381 | + return $this->reasons; |
|
| 1382 | 1382 | } |
| 1383 | 1383 | } |
| 1384 | 1384 | |
@@ -1392,19 +1392,19 @@ discard block |
||
| 1392 | 1392 | |
| 1393 | 1393 | public function setFilteringCount($filteringCount) |
| 1394 | 1394 | { |
| 1395 | - $this->filteringCount = $filteringCount; |
|
| 1395 | + $this->filteringCount = $filteringCount; |
|
| 1396 | 1396 | } |
| 1397 | 1397 | public function getFilteringCount() |
| 1398 | 1398 | { |
| 1399 | - return $this->filteringCount; |
|
| 1399 | + return $this->filteringCount; |
|
| 1400 | 1400 | } |
| 1401 | 1401 | public function setFilteringStatus($filteringStatus) |
| 1402 | 1402 | { |
| 1403 | - $this->filteringStatus = $filteringStatus; |
|
| 1403 | + $this->filteringStatus = $filteringStatus; |
|
| 1404 | 1404 | } |
| 1405 | 1405 | public function getFilteringStatus() |
| 1406 | 1406 | { |
| 1407 | - return $this->filteringStatus; |
|
| 1407 | + return $this->filteringStatus; |
|
| 1408 | 1408 | } |
| 1409 | 1409 | } |
| 1410 | 1410 | |
@@ -1421,27 +1421,27 @@ discard block |
||
| 1421 | 1421 | |
| 1422 | 1422 | public function setItems($items) |
| 1423 | 1423 | { |
| 1424 | - $this->items = $items; |
|
| 1424 | + $this->items = $items; |
|
| 1425 | 1425 | } |
| 1426 | 1426 | public function getItems() |
| 1427 | 1427 | { |
| 1428 | - return $this->items; |
|
| 1428 | + return $this->items; |
|
| 1429 | 1429 | } |
| 1430 | 1430 | public function setKind($kind) |
| 1431 | 1431 | { |
| 1432 | - $this->kind = $kind; |
|
| 1432 | + $this->kind = $kind; |
|
| 1433 | 1433 | } |
| 1434 | 1434 | public function getKind() |
| 1435 | 1435 | { |
| 1436 | - return $this->kind; |
|
| 1436 | + return $this->kind; |
|
| 1437 | 1437 | } |
| 1438 | 1438 | public function setNextPageToken($nextPageToken) |
| 1439 | 1439 | { |
| 1440 | - $this->nextPageToken = $nextPageToken; |
|
| 1440 | + $this->nextPageToken = $nextPageToken; |
|
| 1441 | 1441 | } |
| 1442 | 1442 | public function getNextPageToken() |
| 1443 | 1443 | { |
| 1444 | - return $this->nextPageToken; |
|
| 1444 | + return $this->nextPageToken; |
|
| 1445 | 1445 | } |
| 1446 | 1446 | } |
| 1447 | 1447 | |
@@ -1465,99 +1465,99 @@ discard block |
||
| 1465 | 1465 | |
| 1466 | 1466 | public function setAccountId($accountId) |
| 1467 | 1467 | { |
| 1468 | - $this->accountId = $accountId; |
|
| 1468 | + $this->accountId = $accountId; |
|
| 1469 | 1469 | } |
| 1470 | 1470 | public function getAccountId() |
| 1471 | 1471 | { |
| 1472 | - return $this->accountId; |
|
| 1472 | + return $this->accountId; |
|
| 1473 | 1473 | } |
| 1474 | 1474 | public function setAdvertiser($advertiser) |
| 1475 | 1475 | { |
| 1476 | - $this->advertiser = $advertiser; |
|
| 1476 | + $this->advertiser = $advertiser; |
|
| 1477 | 1477 | } |
| 1478 | 1478 | public function getAdvertiser() |
| 1479 | 1479 | { |
| 1480 | - return $this->advertiser; |
|
| 1480 | + return $this->advertiser; |
|
| 1481 | 1481 | } |
| 1482 | 1482 | public function setCurrencyCode($currencyCode) |
| 1483 | 1483 | { |
| 1484 | - $this->currencyCode = $currencyCode; |
|
| 1484 | + $this->currencyCode = $currencyCode; |
|
| 1485 | 1485 | } |
| 1486 | 1486 | public function getCurrencyCode() |
| 1487 | 1487 | { |
| 1488 | - return $this->currencyCode; |
|
| 1488 | + return $this->currencyCode; |
|
| 1489 | 1489 | } |
| 1490 | 1490 | public function setEndTime($endTime) |
| 1491 | 1491 | { |
| 1492 | - $this->endTime = $endTime; |
|
| 1492 | + $this->endTime = $endTime; |
|
| 1493 | 1493 | } |
| 1494 | 1494 | public function getEndTime() |
| 1495 | 1495 | { |
| 1496 | - return $this->endTime; |
|
| 1496 | + return $this->endTime; |
|
| 1497 | 1497 | } |
| 1498 | 1498 | public function setFixedCpm($fixedCpm) |
| 1499 | 1499 | { |
| 1500 | - $this->fixedCpm = $fixedCpm; |
|
| 1500 | + $this->fixedCpm = $fixedCpm; |
|
| 1501 | 1501 | } |
| 1502 | 1502 | public function getFixedCpm() |
| 1503 | 1503 | { |
| 1504 | - return $this->fixedCpm; |
|
| 1504 | + return $this->fixedCpm; |
|
| 1505 | 1505 | } |
| 1506 | 1506 | public function setId($id) |
| 1507 | 1507 | { |
| 1508 | - $this->id = $id; |
|
| 1508 | + $this->id = $id; |
|
| 1509 | 1509 | } |
| 1510 | 1510 | public function getId() |
| 1511 | 1511 | { |
| 1512 | - return $this->id; |
|
| 1512 | + return $this->id; |
|
| 1513 | 1513 | } |
| 1514 | 1514 | public function setKind($kind) |
| 1515 | 1515 | { |
| 1516 | - $this->kind = $kind; |
|
| 1516 | + $this->kind = $kind; |
|
| 1517 | 1517 | } |
| 1518 | 1518 | public function getKind() |
| 1519 | 1519 | { |
| 1520 | - return $this->kind; |
|
| 1520 | + return $this->kind; |
|
| 1521 | 1521 | } |
| 1522 | 1522 | public function setName($name) |
| 1523 | 1523 | { |
| 1524 | - $this->name = $name; |
|
| 1524 | + $this->name = $name; |
|
| 1525 | 1525 | } |
| 1526 | 1526 | public function getName() |
| 1527 | 1527 | { |
| 1528 | - return $this->name; |
|
| 1528 | + return $this->name; |
|
| 1529 | 1529 | } |
| 1530 | 1530 | public function setPrivateExchangeMinCpm($privateExchangeMinCpm) |
| 1531 | 1531 | { |
| 1532 | - $this->privateExchangeMinCpm = $privateExchangeMinCpm; |
|
| 1532 | + $this->privateExchangeMinCpm = $privateExchangeMinCpm; |
|
| 1533 | 1533 | } |
| 1534 | 1534 | public function getPrivateExchangeMinCpm() |
| 1535 | 1535 | { |
| 1536 | - return $this->privateExchangeMinCpm; |
|
| 1536 | + return $this->privateExchangeMinCpm; |
|
| 1537 | 1537 | } |
| 1538 | 1538 | public function setPublisherBlocksOverriden($publisherBlocksOverriden) |
| 1539 | 1539 | { |
| 1540 | - $this->publisherBlocksOverriden = $publisherBlocksOverriden; |
|
| 1540 | + $this->publisherBlocksOverriden = $publisherBlocksOverriden; |
|
| 1541 | 1541 | } |
| 1542 | 1542 | public function getPublisherBlocksOverriden() |
| 1543 | 1543 | { |
| 1544 | - return $this->publisherBlocksOverriden; |
|
| 1544 | + return $this->publisherBlocksOverriden; |
|
| 1545 | 1545 | } |
| 1546 | 1546 | public function setSellerNetwork($sellerNetwork) |
| 1547 | 1547 | { |
| 1548 | - $this->sellerNetwork = $sellerNetwork; |
|
| 1548 | + $this->sellerNetwork = $sellerNetwork; |
|
| 1549 | 1549 | } |
| 1550 | 1550 | public function getSellerNetwork() |
| 1551 | 1551 | { |
| 1552 | - return $this->sellerNetwork; |
|
| 1552 | + return $this->sellerNetwork; |
|
| 1553 | 1553 | } |
| 1554 | 1554 | public function setStartTime($startTime) |
| 1555 | 1555 | { |
| 1556 | - $this->startTime = $startTime; |
|
| 1556 | + $this->startTime = $startTime; |
|
| 1557 | 1557 | } |
| 1558 | 1558 | public function getStartTime() |
| 1559 | 1559 | { |
| 1560 | - return $this->startTime; |
|
| 1560 | + return $this->startTime; |
|
| 1561 | 1561 | } |
| 1562 | 1562 | } |
| 1563 | 1563 | |
@@ -1573,19 +1573,19 @@ discard block |
||
| 1573 | 1573 | |
| 1574 | 1574 | public function setDirectDeals($directDeals) |
| 1575 | 1575 | { |
| 1576 | - $this->directDeals = $directDeals; |
|
| 1576 | + $this->directDeals = $directDeals; |
|
| 1577 | 1577 | } |
| 1578 | 1578 | public function getDirectDeals() |
| 1579 | 1579 | { |
| 1580 | - return $this->directDeals; |
|
| 1580 | + return $this->directDeals; |
|
| 1581 | 1581 | } |
| 1582 | 1582 | public function setKind($kind) |
| 1583 | 1583 | { |
| 1584 | - $this->kind = $kind; |
|
| 1584 | + $this->kind = $kind; |
|
| 1585 | 1585 | } |
| 1586 | 1586 | public function getKind() |
| 1587 | 1587 | { |
| 1588 | - return $this->kind; |
|
| 1588 | + return $this->kind; |
|
| 1589 | 1589 | } |
| 1590 | 1590 | } |
| 1591 | 1591 | |
@@ -1620,179 +1620,179 @@ discard block |
||
| 1620 | 1620 | |
| 1621 | 1621 | public function setBidRate($bidRate) |
| 1622 | 1622 | { |
| 1623 | - $this->bidRate = $bidRate; |
|
| 1623 | + $this->bidRate = $bidRate; |
|
| 1624 | 1624 | } |
| 1625 | 1625 | public function getBidRate() |
| 1626 | 1626 | { |
| 1627 | - return $this->bidRate; |
|
| 1627 | + return $this->bidRate; |
|
| 1628 | 1628 | } |
| 1629 | 1629 | public function setBidRequestRate($bidRequestRate) |
| 1630 | 1630 | { |
| 1631 | - $this->bidRequestRate = $bidRequestRate; |
|
| 1631 | + $this->bidRequestRate = $bidRequestRate; |
|
| 1632 | 1632 | } |
| 1633 | 1633 | public function getBidRequestRate() |
| 1634 | 1634 | { |
| 1635 | - return $this->bidRequestRate; |
|
| 1635 | + return $this->bidRequestRate; |
|
| 1636 | 1636 | } |
| 1637 | 1637 | public function setCalloutStatusRate($calloutStatusRate) |
| 1638 | 1638 | { |
| 1639 | - $this->calloutStatusRate = $calloutStatusRate; |
|
| 1639 | + $this->calloutStatusRate = $calloutStatusRate; |
|
| 1640 | 1640 | } |
| 1641 | 1641 | public function getCalloutStatusRate() |
| 1642 | 1642 | { |
| 1643 | - return $this->calloutStatusRate; |
|
| 1643 | + return $this->calloutStatusRate; |
|
| 1644 | 1644 | } |
| 1645 | 1645 | public function setCookieMatcherStatusRate($cookieMatcherStatusRate) |
| 1646 | 1646 | { |
| 1647 | - $this->cookieMatcherStatusRate = $cookieMatcherStatusRate; |
|
| 1647 | + $this->cookieMatcherStatusRate = $cookieMatcherStatusRate; |
|
| 1648 | 1648 | } |
| 1649 | 1649 | public function getCookieMatcherStatusRate() |
| 1650 | 1650 | { |
| 1651 | - return $this->cookieMatcherStatusRate; |
|
| 1651 | + return $this->cookieMatcherStatusRate; |
|
| 1652 | 1652 | } |
| 1653 | 1653 | public function setCreativeStatusRate($creativeStatusRate) |
| 1654 | 1654 | { |
| 1655 | - $this->creativeStatusRate = $creativeStatusRate; |
|
| 1655 | + $this->creativeStatusRate = $creativeStatusRate; |
|
| 1656 | 1656 | } |
| 1657 | 1657 | public function getCreativeStatusRate() |
| 1658 | 1658 | { |
| 1659 | - return $this->creativeStatusRate; |
|
| 1659 | + return $this->creativeStatusRate; |
|
| 1660 | 1660 | } |
| 1661 | 1661 | public function setFilteredBidRate($filteredBidRate) |
| 1662 | 1662 | { |
| 1663 | - $this->filteredBidRate = $filteredBidRate; |
|
| 1663 | + $this->filteredBidRate = $filteredBidRate; |
|
| 1664 | 1664 | } |
| 1665 | 1665 | public function getFilteredBidRate() |
| 1666 | 1666 | { |
| 1667 | - return $this->filteredBidRate; |
|
| 1667 | + return $this->filteredBidRate; |
|
| 1668 | 1668 | } |
| 1669 | 1669 | public function setHostedMatchStatusRate($hostedMatchStatusRate) |
| 1670 | 1670 | { |
| 1671 | - $this->hostedMatchStatusRate = $hostedMatchStatusRate; |
|
| 1671 | + $this->hostedMatchStatusRate = $hostedMatchStatusRate; |
|
| 1672 | 1672 | } |
| 1673 | 1673 | public function getHostedMatchStatusRate() |
| 1674 | 1674 | { |
| 1675 | - return $this->hostedMatchStatusRate; |
|
| 1675 | + return $this->hostedMatchStatusRate; |
|
| 1676 | 1676 | } |
| 1677 | 1677 | public function setInventoryMatchRate($inventoryMatchRate) |
| 1678 | 1678 | { |
| 1679 | - $this->inventoryMatchRate = $inventoryMatchRate; |
|
| 1679 | + $this->inventoryMatchRate = $inventoryMatchRate; |
|
| 1680 | 1680 | } |
| 1681 | 1681 | public function getInventoryMatchRate() |
| 1682 | 1682 | { |
| 1683 | - return $this->inventoryMatchRate; |
|
| 1683 | + return $this->inventoryMatchRate; |
|
| 1684 | 1684 | } |
| 1685 | 1685 | public function setKind($kind) |
| 1686 | 1686 | { |
| 1687 | - $this->kind = $kind; |
|
| 1687 | + $this->kind = $kind; |
|
| 1688 | 1688 | } |
| 1689 | 1689 | public function getKind() |
| 1690 | 1690 | { |
| 1691 | - return $this->kind; |
|
| 1691 | + return $this->kind; |
|
| 1692 | 1692 | } |
| 1693 | 1693 | public function setLatency50thPercentile($latency50thPercentile) |
| 1694 | 1694 | { |
| 1695 | - $this->latency50thPercentile = $latency50thPercentile; |
|
| 1695 | + $this->latency50thPercentile = $latency50thPercentile; |
|
| 1696 | 1696 | } |
| 1697 | 1697 | public function getLatency50thPercentile() |
| 1698 | 1698 | { |
| 1699 | - return $this->latency50thPercentile; |
|
| 1699 | + return $this->latency50thPercentile; |
|
| 1700 | 1700 | } |
| 1701 | 1701 | public function setLatency85thPercentile($latency85thPercentile) |
| 1702 | 1702 | { |
| 1703 | - $this->latency85thPercentile = $latency85thPercentile; |
|
| 1703 | + $this->latency85thPercentile = $latency85thPercentile; |
|
| 1704 | 1704 | } |
| 1705 | 1705 | public function getLatency85thPercentile() |
| 1706 | 1706 | { |
| 1707 | - return $this->latency85thPercentile; |
|
| 1707 | + return $this->latency85thPercentile; |
|
| 1708 | 1708 | } |
| 1709 | 1709 | public function setLatency95thPercentile($latency95thPercentile) |
| 1710 | 1710 | { |
| 1711 | - $this->latency95thPercentile = $latency95thPercentile; |
|
| 1711 | + $this->latency95thPercentile = $latency95thPercentile; |
|
| 1712 | 1712 | } |
| 1713 | 1713 | public function getLatency95thPercentile() |
| 1714 | 1714 | { |
| 1715 | - return $this->latency95thPercentile; |
|
| 1715 | + return $this->latency95thPercentile; |
|
| 1716 | 1716 | } |
| 1717 | 1717 | public function setNoQuotaInRegion($noQuotaInRegion) |
| 1718 | 1718 | { |
| 1719 | - $this->noQuotaInRegion = $noQuotaInRegion; |
|
| 1719 | + $this->noQuotaInRegion = $noQuotaInRegion; |
|
| 1720 | 1720 | } |
| 1721 | 1721 | public function getNoQuotaInRegion() |
| 1722 | 1722 | { |
| 1723 | - return $this->noQuotaInRegion; |
|
| 1723 | + return $this->noQuotaInRegion; |
|
| 1724 | 1724 | } |
| 1725 | 1725 | public function setOutOfQuota($outOfQuota) |
| 1726 | 1726 | { |
| 1727 | - $this->outOfQuota = $outOfQuota; |
|
| 1727 | + $this->outOfQuota = $outOfQuota; |
|
| 1728 | 1728 | } |
| 1729 | 1729 | public function getOutOfQuota() |
| 1730 | 1730 | { |
| 1731 | - return $this->outOfQuota; |
|
| 1731 | + return $this->outOfQuota; |
|
| 1732 | 1732 | } |
| 1733 | 1733 | public function setPixelMatchRequests($pixelMatchRequests) |
| 1734 | 1734 | { |
| 1735 | - $this->pixelMatchRequests = $pixelMatchRequests; |
|
| 1735 | + $this->pixelMatchRequests = $pixelMatchRequests; |
|
| 1736 | 1736 | } |
| 1737 | 1737 | public function getPixelMatchRequests() |
| 1738 | 1738 | { |
| 1739 | - return $this->pixelMatchRequests; |
|
| 1739 | + return $this->pixelMatchRequests; |
|
| 1740 | 1740 | } |
| 1741 | 1741 | public function setPixelMatchResponses($pixelMatchResponses) |
| 1742 | 1742 | { |
| 1743 | - $this->pixelMatchResponses = $pixelMatchResponses; |
|
| 1743 | + $this->pixelMatchResponses = $pixelMatchResponses; |
|
| 1744 | 1744 | } |
| 1745 | 1745 | public function getPixelMatchResponses() |
| 1746 | 1746 | { |
| 1747 | - return $this->pixelMatchResponses; |
|
| 1747 | + return $this->pixelMatchResponses; |
|
| 1748 | 1748 | } |
| 1749 | 1749 | public function setQuotaConfiguredLimit($quotaConfiguredLimit) |
| 1750 | 1750 | { |
| 1751 | - $this->quotaConfiguredLimit = $quotaConfiguredLimit; |
|
| 1751 | + $this->quotaConfiguredLimit = $quotaConfiguredLimit; |
|
| 1752 | 1752 | } |
| 1753 | 1753 | public function getQuotaConfiguredLimit() |
| 1754 | 1754 | { |
| 1755 | - return $this->quotaConfiguredLimit; |
|
| 1755 | + return $this->quotaConfiguredLimit; |
|
| 1756 | 1756 | } |
| 1757 | 1757 | public function setQuotaThrottledLimit($quotaThrottledLimit) |
| 1758 | 1758 | { |
| 1759 | - $this->quotaThrottledLimit = $quotaThrottledLimit; |
|
| 1759 | + $this->quotaThrottledLimit = $quotaThrottledLimit; |
|
| 1760 | 1760 | } |
| 1761 | 1761 | public function getQuotaThrottledLimit() |
| 1762 | 1762 | { |
| 1763 | - return $this->quotaThrottledLimit; |
|
| 1763 | + return $this->quotaThrottledLimit; |
|
| 1764 | 1764 | } |
| 1765 | 1765 | public function setRegion($region) |
| 1766 | 1766 | { |
| 1767 | - $this->region = $region; |
|
| 1767 | + $this->region = $region; |
|
| 1768 | 1768 | } |
| 1769 | 1769 | public function getRegion() |
| 1770 | 1770 | { |
| 1771 | - return $this->region; |
|
| 1771 | + return $this->region; |
|
| 1772 | 1772 | } |
| 1773 | 1773 | public function setSuccessfulRequestRate($successfulRequestRate) |
| 1774 | 1774 | { |
| 1775 | - $this->successfulRequestRate = $successfulRequestRate; |
|
| 1775 | + $this->successfulRequestRate = $successfulRequestRate; |
|
| 1776 | 1776 | } |
| 1777 | 1777 | public function getSuccessfulRequestRate() |
| 1778 | 1778 | { |
| 1779 | - return $this->successfulRequestRate; |
|
| 1779 | + return $this->successfulRequestRate; |
|
| 1780 | 1780 | } |
| 1781 | 1781 | public function setTimestamp($timestamp) |
| 1782 | 1782 | { |
| 1783 | - $this->timestamp = $timestamp; |
|
| 1783 | + $this->timestamp = $timestamp; |
|
| 1784 | 1784 | } |
| 1785 | 1785 | public function getTimestamp() |
| 1786 | 1786 | { |
| 1787 | - return $this->timestamp; |
|
| 1787 | + return $this->timestamp; |
|
| 1788 | 1788 | } |
| 1789 | 1789 | public function setUnsuccessfulRequestRate($unsuccessfulRequestRate) |
| 1790 | 1790 | { |
| 1791 | - $this->unsuccessfulRequestRate = $unsuccessfulRequestRate; |
|
| 1791 | + $this->unsuccessfulRequestRate = $unsuccessfulRequestRate; |
|
| 1792 | 1792 | } |
| 1793 | 1793 | public function getUnsuccessfulRequestRate() |
| 1794 | 1794 | { |
| 1795 | - return $this->unsuccessfulRequestRate; |
|
| 1795 | + return $this->unsuccessfulRequestRate; |
|
| 1796 | 1796 | } |
| 1797 | 1797 | } |
| 1798 | 1798 | |
@@ -1808,19 +1808,19 @@ discard block |
||
| 1808 | 1808 | |
| 1809 | 1809 | public function setKind($kind) |
| 1810 | 1810 | { |
| 1811 | - $this->kind = $kind; |
|
| 1811 | + $this->kind = $kind; |
|
| 1812 | 1812 | } |
| 1813 | 1813 | public function getKind() |
| 1814 | 1814 | { |
| 1815 | - return $this->kind; |
|
| 1815 | + return $this->kind; |
|
| 1816 | 1816 | } |
| 1817 | 1817 | public function setPerformanceReport($performanceReport) |
| 1818 | 1818 | { |
| 1819 | - $this->performanceReport = $performanceReport; |
|
| 1819 | + $this->performanceReport = $performanceReport; |
|
| 1820 | 1820 | } |
| 1821 | 1821 | public function getPerformanceReport() |
| 1822 | 1822 | { |
| 1823 | - return $this->performanceReport; |
|
| 1823 | + return $this->performanceReport; |
|
| 1824 | 1824 | } |
| 1825 | 1825 | } |
| 1826 | 1826 | |
@@ -1859,187 +1859,187 @@ discard block |
||
| 1859 | 1859 | |
| 1860 | 1860 | public function setBillingId($billingId) |
| 1861 | 1861 | { |
| 1862 | - $this->billingId = $billingId; |
|
| 1862 | + $this->billingId = $billingId; |
|
| 1863 | 1863 | } |
| 1864 | 1864 | public function getBillingId() |
| 1865 | 1865 | { |
| 1866 | - return $this->billingId; |
|
| 1866 | + return $this->billingId; |
|
| 1867 | 1867 | } |
| 1868 | 1868 | public function setConfigId($configId) |
| 1869 | 1869 | { |
| 1870 | - $this->configId = $configId; |
|
| 1870 | + $this->configId = $configId; |
|
| 1871 | 1871 | } |
| 1872 | 1872 | public function getConfigId() |
| 1873 | 1873 | { |
| 1874 | - return $this->configId; |
|
| 1874 | + return $this->configId; |
|
| 1875 | 1875 | } |
| 1876 | 1876 | public function setConfigName($configName) |
| 1877 | 1877 | { |
| 1878 | - $this->configName = $configName; |
|
| 1878 | + $this->configName = $configName; |
|
| 1879 | 1879 | } |
| 1880 | 1880 | public function getConfigName() |
| 1881 | 1881 | { |
| 1882 | - return $this->configName; |
|
| 1882 | + return $this->configName; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | public function setCreativeType($creativeType) |
| 1885 | 1885 | { |
| 1886 | - $this->creativeType = $creativeType; |
|
| 1886 | + $this->creativeType = $creativeType; |
|
| 1887 | 1887 | } |
| 1888 | 1888 | public function getCreativeType() |
| 1889 | 1889 | { |
| 1890 | - return $this->creativeType; |
|
| 1890 | + return $this->creativeType; |
|
| 1891 | 1891 | } |
| 1892 | 1892 | public function setDimensions($dimensions) |
| 1893 | 1893 | { |
| 1894 | - $this->dimensions = $dimensions; |
|
| 1894 | + $this->dimensions = $dimensions; |
|
| 1895 | 1895 | } |
| 1896 | 1896 | public function getDimensions() |
| 1897 | 1897 | { |
| 1898 | - return $this->dimensions; |
|
| 1898 | + return $this->dimensions; |
|
| 1899 | 1899 | } |
| 1900 | 1900 | public function setExcludedContentLabels($excludedContentLabels) |
| 1901 | 1901 | { |
| 1902 | - $this->excludedContentLabels = $excludedContentLabels; |
|
| 1902 | + $this->excludedContentLabels = $excludedContentLabels; |
|
| 1903 | 1903 | } |
| 1904 | 1904 | public function getExcludedContentLabels() |
| 1905 | 1905 | { |
| 1906 | - return $this->excludedContentLabels; |
|
| 1906 | + return $this->excludedContentLabels; |
|
| 1907 | 1907 | } |
| 1908 | 1908 | public function setExcludedGeoCriteriaIds($excludedGeoCriteriaIds) |
| 1909 | 1909 | { |
| 1910 | - $this->excludedGeoCriteriaIds = $excludedGeoCriteriaIds; |
|
| 1910 | + $this->excludedGeoCriteriaIds = $excludedGeoCriteriaIds; |
|
| 1911 | 1911 | } |
| 1912 | 1912 | public function getExcludedGeoCriteriaIds() |
| 1913 | 1913 | { |
| 1914 | - return $this->excludedGeoCriteriaIds; |
|
| 1914 | + return $this->excludedGeoCriteriaIds; |
|
| 1915 | 1915 | } |
| 1916 | 1916 | public function setExcludedPlacements($excludedPlacements) |
| 1917 | 1917 | { |
| 1918 | - $this->excludedPlacements = $excludedPlacements; |
|
| 1918 | + $this->excludedPlacements = $excludedPlacements; |
|
| 1919 | 1919 | } |
| 1920 | 1920 | public function getExcludedPlacements() |
| 1921 | 1921 | { |
| 1922 | - return $this->excludedPlacements; |
|
| 1922 | + return $this->excludedPlacements; |
|
| 1923 | 1923 | } |
| 1924 | 1924 | public function setExcludedUserLists($excludedUserLists) |
| 1925 | 1925 | { |
| 1926 | - $this->excludedUserLists = $excludedUserLists; |
|
| 1926 | + $this->excludedUserLists = $excludedUserLists; |
|
| 1927 | 1927 | } |
| 1928 | 1928 | public function getExcludedUserLists() |
| 1929 | 1929 | { |
| 1930 | - return $this->excludedUserLists; |
|
| 1930 | + return $this->excludedUserLists; |
|
| 1931 | 1931 | } |
| 1932 | 1932 | public function setExcludedVerticals($excludedVerticals) |
| 1933 | 1933 | { |
| 1934 | - $this->excludedVerticals = $excludedVerticals; |
|
| 1934 | + $this->excludedVerticals = $excludedVerticals; |
|
| 1935 | 1935 | } |
| 1936 | 1936 | public function getExcludedVerticals() |
| 1937 | 1937 | { |
| 1938 | - return $this->excludedVerticals; |
|
| 1938 | + return $this->excludedVerticals; |
|
| 1939 | 1939 | } |
| 1940 | 1940 | public function setGeoCriteriaIds($geoCriteriaIds) |
| 1941 | 1941 | { |
| 1942 | - $this->geoCriteriaIds = $geoCriteriaIds; |
|
| 1942 | + $this->geoCriteriaIds = $geoCriteriaIds; |
|
| 1943 | 1943 | } |
| 1944 | 1944 | public function getGeoCriteriaIds() |
| 1945 | 1945 | { |
| 1946 | - return $this->geoCriteriaIds; |
|
| 1946 | + return $this->geoCriteriaIds; |
|
| 1947 | 1947 | } |
| 1948 | 1948 | public function setIsActive($isActive) |
| 1949 | 1949 | { |
| 1950 | - $this->isActive = $isActive; |
|
| 1950 | + $this->isActive = $isActive; |
|
| 1951 | 1951 | } |
| 1952 | 1952 | public function getIsActive() |
| 1953 | 1953 | { |
| 1954 | - return $this->isActive; |
|
| 1954 | + return $this->isActive; |
|
| 1955 | 1955 | } |
| 1956 | 1956 | public function setKind($kind) |
| 1957 | 1957 | { |
| 1958 | - $this->kind = $kind; |
|
| 1958 | + $this->kind = $kind; |
|
| 1959 | 1959 | } |
| 1960 | 1960 | public function getKind() |
| 1961 | 1961 | { |
| 1962 | - return $this->kind; |
|
| 1962 | + return $this->kind; |
|
| 1963 | 1963 | } |
| 1964 | 1964 | public function setLanguages($languages) |
| 1965 | 1965 | { |
| 1966 | - $this->languages = $languages; |
|
| 1966 | + $this->languages = $languages; |
|
| 1967 | 1967 | } |
| 1968 | 1968 | public function getLanguages() |
| 1969 | 1969 | { |
| 1970 | - return $this->languages; |
|
| 1970 | + return $this->languages; |
|
| 1971 | 1971 | } |
| 1972 | 1972 | public function setMobileCarriers($mobileCarriers) |
| 1973 | 1973 | { |
| 1974 | - $this->mobileCarriers = $mobileCarriers; |
|
| 1974 | + $this->mobileCarriers = $mobileCarriers; |
|
| 1975 | 1975 | } |
| 1976 | 1976 | public function getMobileCarriers() |
| 1977 | 1977 | { |
| 1978 | - return $this->mobileCarriers; |
|
| 1978 | + return $this->mobileCarriers; |
|
| 1979 | 1979 | } |
| 1980 | 1980 | public function setMobileDevices($mobileDevices) |
| 1981 | 1981 | { |
| 1982 | - $this->mobileDevices = $mobileDevices; |
|
| 1982 | + $this->mobileDevices = $mobileDevices; |
|
| 1983 | 1983 | } |
| 1984 | 1984 | public function getMobileDevices() |
| 1985 | 1985 | { |
| 1986 | - return $this->mobileDevices; |
|
| 1986 | + return $this->mobileDevices; |
|
| 1987 | 1987 | } |
| 1988 | 1988 | public function setMobileOperatingSystemVersions($mobileOperatingSystemVersions) |
| 1989 | 1989 | { |
| 1990 | - $this->mobileOperatingSystemVersions = $mobileOperatingSystemVersions; |
|
| 1990 | + $this->mobileOperatingSystemVersions = $mobileOperatingSystemVersions; |
|
| 1991 | 1991 | } |
| 1992 | 1992 | public function getMobileOperatingSystemVersions() |
| 1993 | 1993 | { |
| 1994 | - return $this->mobileOperatingSystemVersions; |
|
| 1994 | + return $this->mobileOperatingSystemVersions; |
|
| 1995 | 1995 | } |
| 1996 | 1996 | public function setPlacements($placements) |
| 1997 | 1997 | { |
| 1998 | - $this->placements = $placements; |
|
| 1998 | + $this->placements = $placements; |
|
| 1999 | 1999 | } |
| 2000 | 2000 | public function getPlacements() |
| 2001 | 2001 | { |
| 2002 | - return $this->placements; |
|
| 2002 | + return $this->placements; |
|
| 2003 | 2003 | } |
| 2004 | 2004 | public function setPlatforms($platforms) |
| 2005 | 2005 | { |
| 2006 | - $this->platforms = $platforms; |
|
| 2006 | + $this->platforms = $platforms; |
|
| 2007 | 2007 | } |
| 2008 | 2008 | public function getPlatforms() |
| 2009 | 2009 | { |
| 2010 | - return $this->platforms; |
|
| 2010 | + return $this->platforms; |
|
| 2011 | 2011 | } |
| 2012 | 2012 | public function setSupportedCreativeAttributes($supportedCreativeAttributes) |
| 2013 | 2013 | { |
| 2014 | - $this->supportedCreativeAttributes = $supportedCreativeAttributes; |
|
| 2014 | + $this->supportedCreativeAttributes = $supportedCreativeAttributes; |
|
| 2015 | 2015 | } |
| 2016 | 2016 | public function getSupportedCreativeAttributes() |
| 2017 | 2017 | { |
| 2018 | - return $this->supportedCreativeAttributes; |
|
| 2018 | + return $this->supportedCreativeAttributes; |
|
| 2019 | 2019 | } |
| 2020 | 2020 | public function setUserLists($userLists) |
| 2021 | 2021 | { |
| 2022 | - $this->userLists = $userLists; |
|
| 2022 | + $this->userLists = $userLists; |
|
| 2023 | 2023 | } |
| 2024 | 2024 | public function getUserLists() |
| 2025 | 2025 | { |
| 2026 | - return $this->userLists; |
|
| 2026 | + return $this->userLists; |
|
| 2027 | 2027 | } |
| 2028 | 2028 | public function setVendorTypes($vendorTypes) |
| 2029 | 2029 | { |
| 2030 | - $this->vendorTypes = $vendorTypes; |
|
| 2030 | + $this->vendorTypes = $vendorTypes; |
|
| 2031 | 2031 | } |
| 2032 | 2032 | public function getVendorTypes() |
| 2033 | 2033 | { |
| 2034 | - return $this->vendorTypes; |
|
| 2034 | + return $this->vendorTypes; |
|
| 2035 | 2035 | } |
| 2036 | 2036 | public function setVerticals($verticals) |
| 2037 | 2037 | { |
| 2038 | - $this->verticals = $verticals; |
|
| 2038 | + $this->verticals = $verticals; |
|
| 2039 | 2039 | } |
| 2040 | 2040 | public function getVerticals() |
| 2041 | 2041 | { |
| 2042 | - return $this->verticals; |
|
| 2042 | + return $this->verticals; |
|
| 2043 | 2043 | } |
| 2044 | 2044 | } |
| 2045 | 2045 | |
@@ -2053,19 +2053,19 @@ discard block |
||
| 2053 | 2053 | |
| 2054 | 2054 | public function setHeight($height) |
| 2055 | 2055 | { |
| 2056 | - $this->height = $height; |
|
| 2056 | + $this->height = $height; |
|
| 2057 | 2057 | } |
| 2058 | 2058 | public function getHeight() |
| 2059 | 2059 | { |
| 2060 | - return $this->height; |
|
| 2060 | + return $this->height; |
|
| 2061 | 2061 | } |
| 2062 | 2062 | public function setWidth($width) |
| 2063 | 2063 | { |
| 2064 | - $this->width = $width; |
|
| 2064 | + $this->width = $width; |
|
| 2065 | 2065 | } |
| 2066 | 2066 | public function getWidth() |
| 2067 | 2067 | { |
| 2068 | - return $this->width; |
|
| 2068 | + return $this->width; |
|
| 2069 | 2069 | } |
| 2070 | 2070 | } |
| 2071 | 2071 | |
@@ -2079,19 +2079,19 @@ discard block |
||
| 2079 | 2079 | |
| 2080 | 2080 | public function setToken($token) |
| 2081 | 2081 | { |
| 2082 | - $this->token = $token; |
|
| 2082 | + $this->token = $token; |
|
| 2083 | 2083 | } |
| 2084 | 2084 | public function getToken() |
| 2085 | 2085 | { |
| 2086 | - return $this->token; |
|
| 2086 | + return $this->token; |
|
| 2087 | 2087 | } |
| 2088 | 2088 | public function setType($type) |
| 2089 | 2089 | { |
| 2090 | - $this->type = $type; |
|
| 2090 | + $this->type = $type; |
|
| 2091 | 2091 | } |
| 2092 | 2092 | public function getType() |
| 2093 | 2093 | { |
| 2094 | - return $this->type; |
|
| 2094 | + return $this->type; |
|
| 2095 | 2095 | } |
| 2096 | 2096 | } |
| 2097 | 2097 | |
@@ -2107,19 +2107,19 @@ discard block |
||
| 2107 | 2107 | |
| 2108 | 2108 | public function setItems($items) |
| 2109 | 2109 | { |
| 2110 | - $this->items = $items; |
|
| 2110 | + $this->items = $items; |
|
| 2111 | 2111 | } |
| 2112 | 2112 | public function getItems() |
| 2113 | 2113 | { |
| 2114 | - return $this->items; |
|
| 2114 | + return $this->items; |
|
| 2115 | 2115 | } |
| 2116 | 2116 | public function setKind($kind) |
| 2117 | 2117 | { |
| 2118 | - $this->kind = $kind; |
|
| 2118 | + $this->kind = $kind; |
|
| 2119 | 2119 | } |
| 2120 | 2120 | public function getKind() |
| 2121 | 2121 | { |
| 2122 | - return $this->kind; |
|
| 2122 | + return $this->kind; |
|
| 2123 | 2123 | } |
| 2124 | 2124 | } |
| 2125 | 2125 | |
@@ -2133,18 +2133,18 @@ discard block |
||
| 2133 | 2133 | |
| 2134 | 2134 | public function setToken($token) |
| 2135 | 2135 | { |
| 2136 | - $this->token = $token; |
|
| 2136 | + $this->token = $token; |
|
| 2137 | 2137 | } |
| 2138 | 2138 | public function getToken() |
| 2139 | 2139 | { |
| 2140 | - return $this->token; |
|
| 2140 | + return $this->token; |
|
| 2141 | 2141 | } |
| 2142 | 2142 | public function setType($type) |
| 2143 | 2143 | { |
| 2144 | - $this->type = $type; |
|
| 2144 | + $this->type = $type; |
|
| 2145 | 2145 | } |
| 2146 | 2146 | public function getType() |
| 2147 | 2147 | { |
| 2148 | - return $this->type; |
|
| 2148 | + return $this->type; |
|
| 2149 | 2149 | } |
| 2150 | 2150 | } |
@@ -73,11 +73,11 @@ discard block |
||
| 73 | 73 | 'required' => true, |
| 74 | 74 | ), |
| 75 | 75 | ), |
| 76 | - ),'list' => array( |
|
| 76 | + ), 'list' => array( |
|
| 77 | 77 | 'path' => 'accounts', |
| 78 | 78 | 'httpMethod' => 'GET', |
| 79 | 79 | 'parameters' => array(), |
| 80 | - ),'patch' => array( |
|
| 80 | + ), 'patch' => array( |
|
| 81 | 81 | 'path' => 'accounts/{id}', |
| 82 | 82 | 'httpMethod' => 'PATCH', |
| 83 | 83 | 'parameters' => array( |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | 'required' => true, |
| 88 | 88 | ), |
| 89 | 89 | ), |
| 90 | - ),'update' => array( |
|
| 90 | + ), 'update' => array( |
|
| 91 | 91 | 'path' => 'accounts/{id}', |
| 92 | 92 | 'httpMethod' => 'PUT', |
| 93 | 93 | 'parameters' => array( |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | 'required' => true, |
| 118 | 118 | ), |
| 119 | 119 | ), |
| 120 | - ),'list' => array( |
|
| 120 | + ), 'list' => array( |
|
| 121 | 121 | 'path' => 'billinginfo', |
| 122 | 122 | 'httpMethod' => 'GET', |
| 123 | 123 | 'parameters' => array(), |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | 'required' => true, |
| 147 | 147 | ), |
| 148 | 148 | ), |
| 149 | - ),'patch' => array( |
|
| 149 | + ), 'patch' => array( |
|
| 150 | 150 | 'path' => 'billinginfo/{accountId}/{billingId}', |
| 151 | 151 | 'httpMethod' => 'PATCH', |
| 152 | 152 | 'parameters' => array( |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | 'required' => true, |
| 162 | 162 | ), |
| 163 | 163 | ), |
| 164 | - ),'update' => array( |
|
| 164 | + ), 'update' => array( |
|
| 165 | 165 | 'path' => 'billinginfo/{accountId}/{billingId}', |
| 166 | 166 | 'httpMethod' => 'PUT', |
| 167 | 167 | 'parameters' => array( |
@@ -201,11 +201,11 @@ discard block |
||
| 201 | 201 | 'required' => true, |
| 202 | 202 | ), |
| 203 | 203 | ), |
| 204 | - ),'insert' => array( |
|
| 204 | + ), 'insert' => array( |
|
| 205 | 205 | 'path' => 'creatives', |
| 206 | 206 | 'httpMethod' => 'POST', |
| 207 | 207 | 'parameters' => array(), |
| 208 | - ),'list' => array( |
|
| 208 | + ), 'list' => array( |
|
| 209 | 209 | 'path' => 'creatives', |
| 210 | 210 | 'httpMethod' => 'GET', |
| 211 | 211 | 'parameters' => array( |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | 'required' => true, |
| 253 | 253 | ), |
| 254 | 254 | ), |
| 255 | - ),'list' => array( |
|
| 255 | + ), 'list' => array( |
|
| 256 | 256 | 'path' => 'directdeals', |
| 257 | 257 | 'httpMethod' => 'GET', |
| 258 | 258 | 'parameters' => array(), |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | 'required' => true, |
| 320 | 320 | ), |
| 321 | 321 | ), |
| 322 | - ),'get' => array( |
|
| 322 | + ), 'get' => array( |
|
| 323 | 323 | 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
| 324 | 324 | 'httpMethod' => 'GET', |
| 325 | 325 | 'parameters' => array( |
@@ -334,7 +334,7 @@ discard block |
||
| 334 | 334 | 'required' => true, |
| 335 | 335 | ), |
| 336 | 336 | ), |
| 337 | - ),'insert' => array( |
|
| 337 | + ), 'insert' => array( |
|
| 338 | 338 | 'path' => 'pretargetingconfigs/{accountId}', |
| 339 | 339 | 'httpMethod' => 'POST', |
| 340 | 340 | 'parameters' => array( |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | 'required' => true, |
| 345 | 345 | ), |
| 346 | 346 | ), |
| 347 | - ),'list' => array( |
|
| 347 | + ), 'list' => array( |
|
| 348 | 348 | 'path' => 'pretargetingconfigs/{accountId}', |
| 349 | 349 | 'httpMethod' => 'GET', |
| 350 | 350 | 'parameters' => array( |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | 'required' => true, |
| 355 | 355 | ), |
| 356 | 356 | ), |
| 357 | - ),'patch' => array( |
|
| 357 | + ), 'patch' => array( |
|
| 358 | 358 | 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
| 359 | 359 | 'httpMethod' => 'PATCH', |
| 360 | 360 | 'parameters' => array( |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | 'required' => true, |
| 370 | 370 | ), |
| 371 | 371 | ), |
| 372 | - ),'update' => array( |
|
| 372 | + ), 'update' => array( |
|
| 373 | 373 | 'path' => 'pretargetingconfigs/{accountId}/{configId}', |
| 374 | 374 | 'httpMethod' => 'PUT', |
| 375 | 375 | 'parameters' => array( |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | * Insert Mail into Google's Gmail backends (mail.insert) |
| 90 | 90 | * |
| 91 | 91 | * @param string $userKey The email or immutable id of the user |
| 92 | - * @param Google_MailItem $postBody |
|
| 92 | + * @param Google_Service_Admin_MailItem $postBody |
|
| 93 | 93 | * @param array $optParams Optional parameters. |
| 94 | 94 | */ |
| 95 | 95 | public function insert($userKey, Google_Service_Admin_MailItem $postBody, $optParams = array()) |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Manage email messages of users on your domain. */ |
| 34 | 34 | const EMAIL_MIGRATION = |
| 35 | - "https://www.googleapis.com/auth/email.migration"; |
|
| 35 | + "https://www.googleapis.com/auth/email.migration"; |
|
| 36 | 36 | |
| 37 | 37 | public $mail; |
| 38 | 38 | |
@@ -44,32 +44,32 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public function __construct(Google_Client $client) |
| 46 | 46 | { |
| 47 | - parent::__construct($client); |
|
| 48 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 49 | - $this->servicePath = 'email/v2/users/'; |
|
| 50 | - $this->version = 'email_migration_v2'; |
|
| 51 | - $this->serviceName = 'admin'; |
|
| 47 | + parent::__construct($client); |
|
| 48 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 49 | + $this->servicePath = 'email/v2/users/'; |
|
| 50 | + $this->version = 'email_migration_v2'; |
|
| 51 | + $this->serviceName = 'admin'; |
|
| 52 | 52 | |
| 53 | - $this->mail = new Google_Service_Admin_Mail_Resource( |
|
| 54 | - $this, |
|
| 55 | - $this->serviceName, |
|
| 56 | - 'mail', |
|
| 57 | - array( |
|
| 58 | - 'methods' => array( |
|
| 59 | - 'insert' => array( |
|
| 60 | - 'path' => '{userKey}/mail', |
|
| 61 | - 'httpMethod' => 'POST', |
|
| 62 | - 'parameters' => array( |
|
| 63 | - 'userKey' => array( |
|
| 64 | - 'location' => 'path', |
|
| 65 | - 'type' => 'string', |
|
| 66 | - 'required' => true, |
|
| 67 | - ), |
|
| 68 | - ), |
|
| 69 | - ), |
|
| 70 | - ) |
|
| 71 | - ) |
|
| 72 | - ); |
|
| 53 | + $this->mail = new Google_Service_Admin_Mail_Resource( |
|
| 54 | + $this, |
|
| 55 | + $this->serviceName, |
|
| 56 | + 'mail', |
|
| 57 | + array( |
|
| 58 | + 'methods' => array( |
|
| 59 | + 'insert' => array( |
|
| 60 | + 'path' => '{userKey}/mail', |
|
| 61 | + 'httpMethod' => 'POST', |
|
| 62 | + 'parameters' => array( |
|
| 63 | + 'userKey' => array( |
|
| 64 | + 'location' => 'path', |
|
| 65 | + 'type' => 'string', |
|
| 66 | + 'required' => true, |
|
| 67 | + ), |
|
| 68 | + ), |
|
| 69 | + ), |
|
| 70 | + ) |
|
| 71 | + ) |
|
| 72 | + ); |
|
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | |
@@ -94,9 +94,9 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | public function insert($userKey, Google_Service_Admin_MailItem $postBody, $optParams = array()) |
| 96 | 96 | { |
| 97 | - $params = array('userKey' => $userKey, 'postBody' => $postBody); |
|
| 98 | - $params = array_merge($params, $optParams); |
|
| 99 | - return $this->call('insert', array($params)); |
|
| 97 | + $params = array('userKey' => $userKey, 'postBody' => $postBody); |
|
| 98 | + $params = array_merge($params, $optParams); |
|
| 99 | + return $this->call('insert', array($params)); |
|
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
@@ -121,74 +121,74 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | public function setIsDeleted($isDeleted) |
| 123 | 123 | { |
| 124 | - $this->isDeleted = $isDeleted; |
|
| 124 | + $this->isDeleted = $isDeleted; |
|
| 125 | 125 | } |
| 126 | 126 | public function getIsDeleted() |
| 127 | 127 | { |
| 128 | - return $this->isDeleted; |
|
| 128 | + return $this->isDeleted; |
|
| 129 | 129 | } |
| 130 | 130 | public function setIsDraft($isDraft) |
| 131 | 131 | { |
| 132 | - $this->isDraft = $isDraft; |
|
| 132 | + $this->isDraft = $isDraft; |
|
| 133 | 133 | } |
| 134 | 134 | public function getIsDraft() |
| 135 | 135 | { |
| 136 | - return $this->isDraft; |
|
| 136 | + return $this->isDraft; |
|
| 137 | 137 | } |
| 138 | 138 | public function setIsInbox($isInbox) |
| 139 | 139 | { |
| 140 | - $this->isInbox = $isInbox; |
|
| 140 | + $this->isInbox = $isInbox; |
|
| 141 | 141 | } |
| 142 | 142 | public function getIsInbox() |
| 143 | 143 | { |
| 144 | - return $this->isInbox; |
|
| 144 | + return $this->isInbox; |
|
| 145 | 145 | } |
| 146 | 146 | public function setIsSent($isSent) |
| 147 | 147 | { |
| 148 | - $this->isSent = $isSent; |
|
| 148 | + $this->isSent = $isSent; |
|
| 149 | 149 | } |
| 150 | 150 | public function getIsSent() |
| 151 | 151 | { |
| 152 | - return $this->isSent; |
|
| 152 | + return $this->isSent; |
|
| 153 | 153 | } |
| 154 | 154 | public function setIsStarred($isStarred) |
| 155 | 155 | { |
| 156 | - $this->isStarred = $isStarred; |
|
| 156 | + $this->isStarred = $isStarred; |
|
| 157 | 157 | } |
| 158 | 158 | public function getIsStarred() |
| 159 | 159 | { |
| 160 | - return $this->isStarred; |
|
| 160 | + return $this->isStarred; |
|
| 161 | 161 | } |
| 162 | 162 | public function setIsTrash($isTrash) |
| 163 | 163 | { |
| 164 | - $this->isTrash = $isTrash; |
|
| 164 | + $this->isTrash = $isTrash; |
|
| 165 | 165 | } |
| 166 | 166 | public function getIsTrash() |
| 167 | 167 | { |
| 168 | - return $this->isTrash; |
|
| 168 | + return $this->isTrash; |
|
| 169 | 169 | } |
| 170 | 170 | public function setIsUnread($isUnread) |
| 171 | 171 | { |
| 172 | - $this->isUnread = $isUnread; |
|
| 172 | + $this->isUnread = $isUnread; |
|
| 173 | 173 | } |
| 174 | 174 | public function getIsUnread() |
| 175 | 175 | { |
| 176 | - return $this->isUnread; |
|
| 176 | + return $this->isUnread; |
|
| 177 | 177 | } |
| 178 | 178 | public function setKind($kind) |
| 179 | 179 | { |
| 180 | - $this->kind = $kind; |
|
| 180 | + $this->kind = $kind; |
|
| 181 | 181 | } |
| 182 | 182 | public function getKind() |
| 183 | 183 | { |
| 184 | - return $this->kind; |
|
| 184 | + return $this->kind; |
|
| 185 | 185 | } |
| 186 | 186 | public function setLabels($labels) |
| 187 | 187 | { |
| 188 | - $this->labels = $labels; |
|
| 188 | + $this->labels = $labels; |
|
| 189 | 189 | } |
| 190 | 190 | public function getLabels() |
| 191 | 191 | { |
| 192 | - return $this->labels; |
|
| 192 | + return $this->labels; |
|
| 193 | 193 | } |
| 194 | 194 | } |
@@ -790,7 +790,7 @@ discard block |
||
| 790 | 790 | * |
| 791 | 791 | * @param string $accountId Account which will contain the ad unit. |
| 792 | 792 | * @param string $adClientId Ad client into which to insert the ad unit. |
| 793 | - * @param Google_AdUnit $postBody |
|
| 793 | + * @param Google_Service_AdSenseHost_AdUnit $postBody |
|
| 794 | 794 | * @param array $optParams Optional parameters. |
| 795 | 795 | * @return Google_Service_AdSenseHost_AdUnit |
| 796 | 796 | */ |
@@ -832,7 +832,7 @@ discard block |
||
| 832 | 832 | * @param string $accountId Account which contains the ad client. |
| 833 | 833 | * @param string $adClientId Ad client which contains the ad unit. |
| 834 | 834 | * @param string $adUnitId Ad unit to get. |
| 835 | - * @param Google_AdUnit $postBody |
|
| 835 | + * @param Google_Service_AdSenseHost_AdUnit $postBody |
|
| 836 | 836 | * @param array $optParams Optional parameters. |
| 837 | 837 | * @return Google_Service_AdSenseHost_AdUnit |
| 838 | 838 | */ |
@@ -849,7 +849,7 @@ discard block |
||
| 849 | 849 | * |
| 850 | 850 | * @param string $accountId Account which contains the ad client. |
| 851 | 851 | * @param string $adClientId Ad client which contains the ad unit. |
| 852 | - * @param Google_AdUnit $postBody |
|
| 852 | + * @param Google_Service_AdSenseHost_AdUnit $postBody |
|
| 853 | 853 | * @param array $optParams Optional parameters. |
| 854 | 854 | * @return Google_Service_AdSenseHost_AdUnit |
| 855 | 855 | */ |
@@ -1044,7 +1044,7 @@ discard block |
||
| 1044 | 1044 | * |
| 1045 | 1045 | * @param string $adClientId Ad client to which the new custom channel will be |
| 1046 | 1046 | * added. |
| 1047 | - * @param Google_CustomChannel $postBody |
|
| 1047 | + * @param Google_Service_AdSenseHost_CustomChannel $postBody |
|
| 1048 | 1048 | * @param array $optParams Optional parameters. |
| 1049 | 1049 | * @return Google_Service_AdSenseHost_CustomChannel |
| 1050 | 1050 | */ |
@@ -1083,7 +1083,7 @@ discard block |
||
| 1083 | 1083 | * @param string $adClientId Ad client in which the custom channel will be |
| 1084 | 1084 | * updated. |
| 1085 | 1085 | * @param string $customChannelId Custom channel to get. |
| 1086 | - * @param Google_CustomChannel $postBody |
|
| 1086 | + * @param Google_Service_AdSenseHost_CustomChannel $postBody |
|
| 1087 | 1087 | * @param array $optParams Optional parameters. |
| 1088 | 1088 | * @return Google_Service_AdSenseHost_CustomChannel |
| 1089 | 1089 | */ |
@@ -1099,7 +1099,7 @@ discard block |
||
| 1099 | 1099 | * |
| 1100 | 1100 | * @param string $adClientId Ad client in which the custom channel will be |
| 1101 | 1101 | * updated. |
| 1102 | - * @param Google_CustomChannel $postBody |
|
| 1102 | + * @param Google_Service_AdSenseHost_CustomChannel $postBody |
|
| 1103 | 1103 | * @param array $optParams Optional parameters. |
| 1104 | 1104 | * @return Google_Service_AdSenseHost_CustomChannel |
| 1105 | 1105 | */ |
@@ -1185,7 +1185,7 @@ discard block |
||
| 1185 | 1185 | * |
| 1186 | 1186 | * @param string $adClientId Ad client to which the new URL channel will be |
| 1187 | 1187 | * added. |
| 1188 | - * @param Google_UrlChannel $postBody |
|
| 1188 | + * @param Google_Service_AdSenseHost_UrlChannel $postBody |
|
| 1189 | 1189 | * @param array $optParams Optional parameters. |
| 1190 | 1190 | * @return Google_Service_AdSenseHost_UrlChannel |
| 1191 | 1191 | */ |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | /** View and manage your AdSense host data and associated accounts. */ |
| 35 | 35 | const ADSENSEHOST = |
| 36 | - "https://www.googleapis.com/auth/adsensehost"; |
|
| 36 | + "https://www.googleapis.com/auth/adsensehost"; |
|
| 37 | 37 | |
| 38 | 38 | public $accounts; |
| 39 | 39 | public $accounts_adclients; |
@@ -53,580 +53,580 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function __construct(Google_Client $client) |
| 55 | 55 | { |
| 56 | - parent::__construct($client); |
|
| 57 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 58 | - $this->servicePath = 'adsensehost/v4.1/'; |
|
| 59 | - $this->version = 'v4.1'; |
|
| 60 | - $this->serviceName = 'adsensehost'; |
|
| 61 | - |
|
| 62 | - $this->accounts = new Google_Service_AdSenseHost_Accounts_Resource( |
|
| 63 | - $this, |
|
| 64 | - $this->serviceName, |
|
| 65 | - 'accounts', |
|
| 66 | - array( |
|
| 67 | - 'methods' => array( |
|
| 68 | - 'get' => array( |
|
| 69 | - 'path' => 'accounts/{accountId}', |
|
| 70 | - 'httpMethod' => 'GET', |
|
| 71 | - 'parameters' => array( |
|
| 72 | - 'accountId' => array( |
|
| 73 | - 'location' => 'path', |
|
| 74 | - 'type' => 'string', |
|
| 75 | - 'required' => true, |
|
| 76 | - ), |
|
| 77 | - ), |
|
| 78 | - ),'list' => array( |
|
| 79 | - 'path' => 'accounts', |
|
| 80 | - 'httpMethod' => 'GET', |
|
| 81 | - 'parameters' => array( |
|
| 82 | - 'filterAdClientId' => array( |
|
| 83 | - 'location' => 'query', |
|
| 84 | - 'type' => 'string', |
|
| 85 | - 'repeated' => true, |
|
| 86 | - 'required' => true, |
|
| 87 | - ), |
|
| 88 | - ), |
|
| 89 | - ), |
|
| 90 | - ) |
|
| 91 | - ) |
|
| 92 | - ); |
|
| 93 | - $this->accounts_adclients = new Google_Service_AdSenseHost_AccountsAdclients_Resource( |
|
| 94 | - $this, |
|
| 95 | - $this->serviceName, |
|
| 96 | - 'adclients', |
|
| 97 | - array( |
|
| 98 | - 'methods' => array( |
|
| 99 | - 'get' => array( |
|
| 100 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}', |
|
| 101 | - 'httpMethod' => 'GET', |
|
| 102 | - 'parameters' => array( |
|
| 103 | - 'accountId' => array( |
|
| 104 | - 'location' => 'path', |
|
| 105 | - 'type' => 'string', |
|
| 106 | - 'required' => true, |
|
| 107 | - ), |
|
| 108 | - 'adClientId' => array( |
|
| 109 | - 'location' => 'path', |
|
| 110 | - 'type' => 'string', |
|
| 111 | - 'required' => true, |
|
| 112 | - ), |
|
| 113 | - ), |
|
| 114 | - ),'list' => array( |
|
| 115 | - 'path' => 'accounts/{accountId}/adclients', |
|
| 116 | - 'httpMethod' => 'GET', |
|
| 117 | - 'parameters' => array( |
|
| 118 | - 'accountId' => array( |
|
| 119 | - 'location' => 'path', |
|
| 120 | - 'type' => 'string', |
|
| 121 | - 'required' => true, |
|
| 122 | - ), |
|
| 123 | - 'pageToken' => array( |
|
| 124 | - 'location' => 'query', |
|
| 125 | - 'type' => 'string', |
|
| 126 | - ), |
|
| 127 | - 'maxResults' => array( |
|
| 128 | - 'location' => 'query', |
|
| 129 | - 'type' => 'integer', |
|
| 130 | - ), |
|
| 131 | - ), |
|
| 132 | - ), |
|
| 133 | - ) |
|
| 134 | - ) |
|
| 135 | - ); |
|
| 136 | - $this->accounts_adunits = new Google_Service_AdSenseHost_AccountsAdunits_Resource( |
|
| 137 | - $this, |
|
| 138 | - $this->serviceName, |
|
| 139 | - 'adunits', |
|
| 140 | - array( |
|
| 141 | - 'methods' => array( |
|
| 142 | - 'delete' => array( |
|
| 143 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', |
|
| 144 | - 'httpMethod' => 'DELETE', |
|
| 145 | - 'parameters' => array( |
|
| 146 | - 'accountId' => array( |
|
| 147 | - 'location' => 'path', |
|
| 148 | - 'type' => 'string', |
|
| 149 | - 'required' => true, |
|
| 150 | - ), |
|
| 151 | - 'adClientId' => array( |
|
| 152 | - 'location' => 'path', |
|
| 153 | - 'type' => 'string', |
|
| 154 | - 'required' => true, |
|
| 155 | - ), |
|
| 156 | - 'adUnitId' => array( |
|
| 157 | - 'location' => 'path', |
|
| 158 | - 'type' => 'string', |
|
| 159 | - 'required' => true, |
|
| 160 | - ), |
|
| 161 | - ), |
|
| 162 | - ),'get' => array( |
|
| 163 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', |
|
| 164 | - 'httpMethod' => 'GET', |
|
| 165 | - 'parameters' => array( |
|
| 166 | - 'accountId' => array( |
|
| 167 | - 'location' => 'path', |
|
| 168 | - 'type' => 'string', |
|
| 169 | - 'required' => true, |
|
| 170 | - ), |
|
| 171 | - 'adClientId' => array( |
|
| 172 | - 'location' => 'path', |
|
| 173 | - 'type' => 'string', |
|
| 174 | - 'required' => true, |
|
| 175 | - ), |
|
| 176 | - 'adUnitId' => array( |
|
| 177 | - 'location' => 'path', |
|
| 178 | - 'type' => 'string', |
|
| 179 | - 'required' => true, |
|
| 180 | - ), |
|
| 181 | - ), |
|
| 182 | - ),'getAdCode' => array( |
|
| 183 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', |
|
| 184 | - 'httpMethod' => 'GET', |
|
| 185 | - 'parameters' => array( |
|
| 186 | - 'accountId' => array( |
|
| 187 | - 'location' => 'path', |
|
| 188 | - 'type' => 'string', |
|
| 189 | - 'required' => true, |
|
| 190 | - ), |
|
| 191 | - 'adClientId' => array( |
|
| 192 | - 'location' => 'path', |
|
| 193 | - 'type' => 'string', |
|
| 194 | - 'required' => true, |
|
| 195 | - ), |
|
| 196 | - 'adUnitId' => array( |
|
| 197 | - 'location' => 'path', |
|
| 198 | - 'type' => 'string', |
|
| 199 | - 'required' => true, |
|
| 200 | - ), |
|
| 201 | - 'hostCustomChannelId' => array( |
|
| 202 | - 'location' => 'query', |
|
| 203 | - 'type' => 'string', |
|
| 204 | - 'repeated' => true, |
|
| 205 | - ), |
|
| 206 | - ), |
|
| 207 | - ),'insert' => array( |
|
| 208 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 209 | - 'httpMethod' => 'POST', |
|
| 210 | - 'parameters' => array( |
|
| 211 | - 'accountId' => array( |
|
| 212 | - 'location' => 'path', |
|
| 213 | - 'type' => 'string', |
|
| 214 | - 'required' => true, |
|
| 215 | - ), |
|
| 216 | - 'adClientId' => array( |
|
| 217 | - 'location' => 'path', |
|
| 218 | - 'type' => 'string', |
|
| 219 | - 'required' => true, |
|
| 220 | - ), |
|
| 221 | - ), |
|
| 222 | - ),'list' => array( |
|
| 223 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 224 | - 'httpMethod' => 'GET', |
|
| 225 | - 'parameters' => array( |
|
| 226 | - 'accountId' => array( |
|
| 227 | - 'location' => 'path', |
|
| 228 | - 'type' => 'string', |
|
| 229 | - 'required' => true, |
|
| 230 | - ), |
|
| 231 | - 'adClientId' => array( |
|
| 232 | - 'location' => 'path', |
|
| 233 | - 'type' => 'string', |
|
| 234 | - 'required' => true, |
|
| 235 | - ), |
|
| 236 | - 'includeInactive' => array( |
|
| 237 | - 'location' => 'query', |
|
| 238 | - 'type' => 'boolean', |
|
| 239 | - ), |
|
| 240 | - 'pageToken' => array( |
|
| 241 | - 'location' => 'query', |
|
| 242 | - 'type' => 'string', |
|
| 243 | - ), |
|
| 244 | - 'maxResults' => array( |
|
| 245 | - 'location' => 'query', |
|
| 246 | - 'type' => 'integer', |
|
| 247 | - ), |
|
| 248 | - ), |
|
| 249 | - ),'patch' => array( |
|
| 250 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 251 | - 'httpMethod' => 'PATCH', |
|
| 252 | - 'parameters' => array( |
|
| 253 | - 'accountId' => array( |
|
| 254 | - 'location' => 'path', |
|
| 255 | - 'type' => 'string', |
|
| 256 | - 'required' => true, |
|
| 257 | - ), |
|
| 258 | - 'adClientId' => array( |
|
| 259 | - 'location' => 'path', |
|
| 260 | - 'type' => 'string', |
|
| 261 | - 'required' => true, |
|
| 262 | - ), |
|
| 263 | - 'adUnitId' => array( |
|
| 264 | - 'location' => 'query', |
|
| 265 | - 'type' => 'string', |
|
| 266 | - 'required' => true, |
|
| 267 | - ), |
|
| 268 | - ), |
|
| 269 | - ),'update' => array( |
|
| 270 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 271 | - 'httpMethod' => 'PUT', |
|
| 272 | - 'parameters' => array( |
|
| 273 | - 'accountId' => array( |
|
| 274 | - 'location' => 'path', |
|
| 275 | - 'type' => 'string', |
|
| 276 | - 'required' => true, |
|
| 277 | - ), |
|
| 278 | - 'adClientId' => array( |
|
| 279 | - 'location' => 'path', |
|
| 280 | - 'type' => 'string', |
|
| 281 | - 'required' => true, |
|
| 282 | - ), |
|
| 283 | - ), |
|
| 284 | - ), |
|
| 285 | - ) |
|
| 286 | - ) |
|
| 287 | - ); |
|
| 288 | - $this->accounts_reports = new Google_Service_AdSenseHost_AccountsReports_Resource( |
|
| 289 | - $this, |
|
| 290 | - $this->serviceName, |
|
| 291 | - 'reports', |
|
| 292 | - array( |
|
| 293 | - 'methods' => array( |
|
| 294 | - 'generate' => array( |
|
| 295 | - 'path' => 'accounts/{accountId}/reports', |
|
| 296 | - 'httpMethod' => 'GET', |
|
| 297 | - 'parameters' => array( |
|
| 298 | - 'accountId' => array( |
|
| 299 | - 'location' => 'path', |
|
| 300 | - 'type' => 'string', |
|
| 301 | - 'required' => true, |
|
| 302 | - ), |
|
| 303 | - 'startDate' => array( |
|
| 304 | - 'location' => 'query', |
|
| 305 | - 'type' => 'string', |
|
| 306 | - 'required' => true, |
|
| 307 | - ), |
|
| 308 | - 'endDate' => array( |
|
| 309 | - 'location' => 'query', |
|
| 310 | - 'type' => 'string', |
|
| 311 | - 'required' => true, |
|
| 312 | - ), |
|
| 313 | - 'sort' => array( |
|
| 314 | - 'location' => 'query', |
|
| 315 | - 'type' => 'string', |
|
| 316 | - 'repeated' => true, |
|
| 317 | - ), |
|
| 318 | - 'locale' => array( |
|
| 319 | - 'location' => 'query', |
|
| 320 | - 'type' => 'string', |
|
| 321 | - ), |
|
| 322 | - 'metric' => array( |
|
| 323 | - 'location' => 'query', |
|
| 324 | - 'type' => 'string', |
|
| 325 | - 'repeated' => true, |
|
| 326 | - ), |
|
| 327 | - 'maxResults' => array( |
|
| 328 | - 'location' => 'query', |
|
| 329 | - 'type' => 'integer', |
|
| 330 | - ), |
|
| 331 | - 'filter' => array( |
|
| 332 | - 'location' => 'query', |
|
| 333 | - 'type' => 'string', |
|
| 334 | - 'repeated' => true, |
|
| 335 | - ), |
|
| 336 | - 'startIndex' => array( |
|
| 337 | - 'location' => 'query', |
|
| 338 | - 'type' => 'integer', |
|
| 339 | - ), |
|
| 340 | - 'dimension' => array( |
|
| 341 | - 'location' => 'query', |
|
| 342 | - 'type' => 'string', |
|
| 343 | - 'repeated' => true, |
|
| 344 | - ), |
|
| 345 | - ), |
|
| 346 | - ), |
|
| 347 | - ) |
|
| 348 | - ) |
|
| 349 | - ); |
|
| 350 | - $this->adclients = new Google_Service_AdSenseHost_Adclients_Resource( |
|
| 351 | - $this, |
|
| 352 | - $this->serviceName, |
|
| 353 | - 'adclients', |
|
| 354 | - array( |
|
| 355 | - 'methods' => array( |
|
| 356 | - 'get' => array( |
|
| 357 | - 'path' => 'adclients/{adClientId}', |
|
| 358 | - 'httpMethod' => 'GET', |
|
| 359 | - 'parameters' => array( |
|
| 360 | - 'adClientId' => array( |
|
| 361 | - 'location' => 'path', |
|
| 362 | - 'type' => 'string', |
|
| 363 | - 'required' => true, |
|
| 364 | - ), |
|
| 365 | - ), |
|
| 366 | - ),'list' => array( |
|
| 367 | - 'path' => 'adclients', |
|
| 368 | - 'httpMethod' => 'GET', |
|
| 369 | - 'parameters' => array( |
|
| 370 | - 'pageToken' => array( |
|
| 371 | - 'location' => 'query', |
|
| 372 | - 'type' => 'string', |
|
| 373 | - ), |
|
| 374 | - 'maxResults' => array( |
|
| 375 | - 'location' => 'query', |
|
| 376 | - 'type' => 'integer', |
|
| 377 | - ), |
|
| 378 | - ), |
|
| 379 | - ), |
|
| 380 | - ) |
|
| 381 | - ) |
|
| 382 | - ); |
|
| 383 | - $this->associationsessions = new Google_Service_AdSenseHost_Associationsessions_Resource( |
|
| 384 | - $this, |
|
| 385 | - $this->serviceName, |
|
| 386 | - 'associationsessions', |
|
| 387 | - array( |
|
| 388 | - 'methods' => array( |
|
| 389 | - 'start' => array( |
|
| 390 | - 'path' => 'associationsessions/start', |
|
| 391 | - 'httpMethod' => 'GET', |
|
| 392 | - 'parameters' => array( |
|
| 393 | - 'productCode' => array( |
|
| 394 | - 'location' => 'query', |
|
| 395 | - 'type' => 'string', |
|
| 396 | - 'repeated' => true, |
|
| 397 | - 'required' => true, |
|
| 398 | - ), |
|
| 399 | - 'websiteUrl' => array( |
|
| 400 | - 'location' => 'query', |
|
| 401 | - 'type' => 'string', |
|
| 402 | - 'required' => true, |
|
| 403 | - ), |
|
| 404 | - 'websiteLocale' => array( |
|
| 405 | - 'location' => 'query', |
|
| 406 | - 'type' => 'string', |
|
| 407 | - ), |
|
| 408 | - 'userLocale' => array( |
|
| 409 | - 'location' => 'query', |
|
| 410 | - 'type' => 'string', |
|
| 411 | - ), |
|
| 412 | - ), |
|
| 413 | - ),'verify' => array( |
|
| 414 | - 'path' => 'associationsessions/verify', |
|
| 415 | - 'httpMethod' => 'GET', |
|
| 416 | - 'parameters' => array( |
|
| 417 | - 'token' => array( |
|
| 418 | - 'location' => 'query', |
|
| 419 | - 'type' => 'string', |
|
| 420 | - 'required' => true, |
|
| 421 | - ), |
|
| 422 | - ), |
|
| 423 | - ), |
|
| 424 | - ) |
|
| 425 | - ) |
|
| 426 | - ); |
|
| 427 | - $this->customchannels = new Google_Service_AdSenseHost_Customchannels_Resource( |
|
| 428 | - $this, |
|
| 429 | - $this->serviceName, |
|
| 430 | - 'customchannels', |
|
| 431 | - array( |
|
| 432 | - 'methods' => array( |
|
| 433 | - 'delete' => array( |
|
| 434 | - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 435 | - 'httpMethod' => 'DELETE', |
|
| 436 | - 'parameters' => array( |
|
| 437 | - 'adClientId' => array( |
|
| 438 | - 'location' => 'path', |
|
| 439 | - 'type' => 'string', |
|
| 440 | - 'required' => true, |
|
| 441 | - ), |
|
| 442 | - 'customChannelId' => array( |
|
| 443 | - 'location' => 'path', |
|
| 444 | - 'type' => 'string', |
|
| 445 | - 'required' => true, |
|
| 446 | - ), |
|
| 447 | - ), |
|
| 448 | - ),'get' => array( |
|
| 449 | - 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 450 | - 'httpMethod' => 'GET', |
|
| 451 | - 'parameters' => array( |
|
| 452 | - 'adClientId' => array( |
|
| 453 | - 'location' => 'path', |
|
| 454 | - 'type' => 'string', |
|
| 455 | - 'required' => true, |
|
| 456 | - ), |
|
| 457 | - 'customChannelId' => array( |
|
| 458 | - 'location' => 'path', |
|
| 459 | - 'type' => 'string', |
|
| 460 | - 'required' => true, |
|
| 461 | - ), |
|
| 462 | - ), |
|
| 463 | - ),'insert' => array( |
|
| 464 | - 'path' => 'adclients/{adClientId}/customchannels', |
|
| 465 | - 'httpMethod' => 'POST', |
|
| 466 | - 'parameters' => array( |
|
| 467 | - 'adClientId' => array( |
|
| 468 | - 'location' => 'path', |
|
| 469 | - 'type' => 'string', |
|
| 470 | - 'required' => true, |
|
| 471 | - ), |
|
| 472 | - ), |
|
| 473 | - ),'list' => array( |
|
| 474 | - 'path' => 'adclients/{adClientId}/customchannels', |
|
| 475 | - 'httpMethod' => 'GET', |
|
| 476 | - 'parameters' => array( |
|
| 477 | - 'adClientId' => array( |
|
| 478 | - 'location' => 'path', |
|
| 479 | - 'type' => 'string', |
|
| 480 | - 'required' => true, |
|
| 481 | - ), |
|
| 482 | - 'pageToken' => array( |
|
| 483 | - 'location' => 'query', |
|
| 484 | - 'type' => 'string', |
|
| 485 | - ), |
|
| 486 | - 'maxResults' => array( |
|
| 487 | - 'location' => 'query', |
|
| 488 | - 'type' => 'integer', |
|
| 489 | - ), |
|
| 490 | - ), |
|
| 491 | - ),'patch' => array( |
|
| 492 | - 'path' => 'adclients/{adClientId}/customchannels', |
|
| 493 | - 'httpMethod' => 'PATCH', |
|
| 494 | - 'parameters' => array( |
|
| 495 | - 'adClientId' => array( |
|
| 496 | - 'location' => 'path', |
|
| 497 | - 'type' => 'string', |
|
| 498 | - 'required' => true, |
|
| 499 | - ), |
|
| 500 | - 'customChannelId' => array( |
|
| 501 | - 'location' => 'query', |
|
| 502 | - 'type' => 'string', |
|
| 503 | - 'required' => true, |
|
| 504 | - ), |
|
| 505 | - ), |
|
| 506 | - ),'update' => array( |
|
| 507 | - 'path' => 'adclients/{adClientId}/customchannels', |
|
| 508 | - 'httpMethod' => 'PUT', |
|
| 509 | - 'parameters' => array( |
|
| 510 | - 'adClientId' => array( |
|
| 511 | - 'location' => 'path', |
|
| 512 | - 'type' => 'string', |
|
| 513 | - 'required' => true, |
|
| 514 | - ), |
|
| 515 | - ), |
|
| 516 | - ), |
|
| 517 | - ) |
|
| 518 | - ) |
|
| 519 | - ); |
|
| 520 | - $this->reports = new Google_Service_AdSenseHost_Reports_Resource( |
|
| 521 | - $this, |
|
| 522 | - $this->serviceName, |
|
| 523 | - 'reports', |
|
| 524 | - array( |
|
| 525 | - 'methods' => array( |
|
| 526 | - 'generate' => array( |
|
| 527 | - 'path' => 'reports', |
|
| 528 | - 'httpMethod' => 'GET', |
|
| 529 | - 'parameters' => array( |
|
| 530 | - 'startDate' => array( |
|
| 531 | - 'location' => 'query', |
|
| 532 | - 'type' => 'string', |
|
| 533 | - 'required' => true, |
|
| 534 | - ), |
|
| 535 | - 'endDate' => array( |
|
| 536 | - 'location' => 'query', |
|
| 537 | - 'type' => 'string', |
|
| 538 | - 'required' => true, |
|
| 539 | - ), |
|
| 540 | - 'sort' => array( |
|
| 541 | - 'location' => 'query', |
|
| 542 | - 'type' => 'string', |
|
| 543 | - 'repeated' => true, |
|
| 544 | - ), |
|
| 545 | - 'locale' => array( |
|
| 546 | - 'location' => 'query', |
|
| 547 | - 'type' => 'string', |
|
| 548 | - ), |
|
| 549 | - 'metric' => array( |
|
| 550 | - 'location' => 'query', |
|
| 551 | - 'type' => 'string', |
|
| 552 | - 'repeated' => true, |
|
| 553 | - ), |
|
| 554 | - 'maxResults' => array( |
|
| 555 | - 'location' => 'query', |
|
| 556 | - 'type' => 'integer', |
|
| 557 | - ), |
|
| 558 | - 'filter' => array( |
|
| 559 | - 'location' => 'query', |
|
| 560 | - 'type' => 'string', |
|
| 561 | - 'repeated' => true, |
|
| 562 | - ), |
|
| 563 | - 'startIndex' => array( |
|
| 564 | - 'location' => 'query', |
|
| 565 | - 'type' => 'integer', |
|
| 566 | - ), |
|
| 567 | - 'dimension' => array( |
|
| 568 | - 'location' => 'query', |
|
| 569 | - 'type' => 'string', |
|
| 570 | - 'repeated' => true, |
|
| 571 | - ), |
|
| 572 | - ), |
|
| 573 | - ), |
|
| 574 | - ) |
|
| 575 | - ) |
|
| 576 | - ); |
|
| 577 | - $this->urlchannels = new Google_Service_AdSenseHost_Urlchannels_Resource( |
|
| 578 | - $this, |
|
| 579 | - $this->serviceName, |
|
| 580 | - 'urlchannels', |
|
| 581 | - array( |
|
| 582 | - 'methods' => array( |
|
| 583 | - 'delete' => array( |
|
| 584 | - 'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}', |
|
| 585 | - 'httpMethod' => 'DELETE', |
|
| 586 | - 'parameters' => array( |
|
| 587 | - 'adClientId' => array( |
|
| 588 | - 'location' => 'path', |
|
| 589 | - 'type' => 'string', |
|
| 590 | - 'required' => true, |
|
| 591 | - ), |
|
| 592 | - 'urlChannelId' => array( |
|
| 593 | - 'location' => 'path', |
|
| 594 | - 'type' => 'string', |
|
| 595 | - 'required' => true, |
|
| 596 | - ), |
|
| 597 | - ), |
|
| 598 | - ),'insert' => array( |
|
| 599 | - 'path' => 'adclients/{adClientId}/urlchannels', |
|
| 600 | - 'httpMethod' => 'POST', |
|
| 601 | - 'parameters' => array( |
|
| 602 | - 'adClientId' => array( |
|
| 603 | - 'location' => 'path', |
|
| 604 | - 'type' => 'string', |
|
| 605 | - 'required' => true, |
|
| 606 | - ), |
|
| 607 | - ), |
|
| 608 | - ),'list' => array( |
|
| 609 | - 'path' => 'adclients/{adClientId}/urlchannels', |
|
| 610 | - 'httpMethod' => 'GET', |
|
| 611 | - 'parameters' => array( |
|
| 612 | - 'adClientId' => array( |
|
| 613 | - 'location' => 'path', |
|
| 614 | - 'type' => 'string', |
|
| 615 | - 'required' => true, |
|
| 616 | - ), |
|
| 617 | - 'pageToken' => array( |
|
| 618 | - 'location' => 'query', |
|
| 619 | - 'type' => 'string', |
|
| 620 | - ), |
|
| 621 | - 'maxResults' => array( |
|
| 622 | - 'location' => 'query', |
|
| 623 | - 'type' => 'integer', |
|
| 624 | - ), |
|
| 625 | - ), |
|
| 626 | - ), |
|
| 627 | - ) |
|
| 628 | - ) |
|
| 629 | - ); |
|
| 56 | + parent::__construct($client); |
|
| 57 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 58 | + $this->servicePath = 'adsensehost/v4.1/'; |
|
| 59 | + $this->version = 'v4.1'; |
|
| 60 | + $this->serviceName = 'adsensehost'; |
|
| 61 | + |
|
| 62 | + $this->accounts = new Google_Service_AdSenseHost_Accounts_Resource( |
|
| 63 | + $this, |
|
| 64 | + $this->serviceName, |
|
| 65 | + 'accounts', |
|
| 66 | + array( |
|
| 67 | + 'methods' => array( |
|
| 68 | + 'get' => array( |
|
| 69 | + 'path' => 'accounts/{accountId}', |
|
| 70 | + 'httpMethod' => 'GET', |
|
| 71 | + 'parameters' => array( |
|
| 72 | + 'accountId' => array( |
|
| 73 | + 'location' => 'path', |
|
| 74 | + 'type' => 'string', |
|
| 75 | + 'required' => true, |
|
| 76 | + ), |
|
| 77 | + ), |
|
| 78 | + ),'list' => array( |
|
| 79 | + 'path' => 'accounts', |
|
| 80 | + 'httpMethod' => 'GET', |
|
| 81 | + 'parameters' => array( |
|
| 82 | + 'filterAdClientId' => array( |
|
| 83 | + 'location' => 'query', |
|
| 84 | + 'type' => 'string', |
|
| 85 | + 'repeated' => true, |
|
| 86 | + 'required' => true, |
|
| 87 | + ), |
|
| 88 | + ), |
|
| 89 | + ), |
|
| 90 | + ) |
|
| 91 | + ) |
|
| 92 | + ); |
|
| 93 | + $this->accounts_adclients = new Google_Service_AdSenseHost_AccountsAdclients_Resource( |
|
| 94 | + $this, |
|
| 95 | + $this->serviceName, |
|
| 96 | + 'adclients', |
|
| 97 | + array( |
|
| 98 | + 'methods' => array( |
|
| 99 | + 'get' => array( |
|
| 100 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}', |
|
| 101 | + 'httpMethod' => 'GET', |
|
| 102 | + 'parameters' => array( |
|
| 103 | + 'accountId' => array( |
|
| 104 | + 'location' => 'path', |
|
| 105 | + 'type' => 'string', |
|
| 106 | + 'required' => true, |
|
| 107 | + ), |
|
| 108 | + 'adClientId' => array( |
|
| 109 | + 'location' => 'path', |
|
| 110 | + 'type' => 'string', |
|
| 111 | + 'required' => true, |
|
| 112 | + ), |
|
| 113 | + ), |
|
| 114 | + ),'list' => array( |
|
| 115 | + 'path' => 'accounts/{accountId}/adclients', |
|
| 116 | + 'httpMethod' => 'GET', |
|
| 117 | + 'parameters' => array( |
|
| 118 | + 'accountId' => array( |
|
| 119 | + 'location' => 'path', |
|
| 120 | + 'type' => 'string', |
|
| 121 | + 'required' => true, |
|
| 122 | + ), |
|
| 123 | + 'pageToken' => array( |
|
| 124 | + 'location' => 'query', |
|
| 125 | + 'type' => 'string', |
|
| 126 | + ), |
|
| 127 | + 'maxResults' => array( |
|
| 128 | + 'location' => 'query', |
|
| 129 | + 'type' => 'integer', |
|
| 130 | + ), |
|
| 131 | + ), |
|
| 132 | + ), |
|
| 133 | + ) |
|
| 134 | + ) |
|
| 135 | + ); |
|
| 136 | + $this->accounts_adunits = new Google_Service_AdSenseHost_AccountsAdunits_Resource( |
|
| 137 | + $this, |
|
| 138 | + $this->serviceName, |
|
| 139 | + 'adunits', |
|
| 140 | + array( |
|
| 141 | + 'methods' => array( |
|
| 142 | + 'delete' => array( |
|
| 143 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', |
|
| 144 | + 'httpMethod' => 'DELETE', |
|
| 145 | + 'parameters' => array( |
|
| 146 | + 'accountId' => array( |
|
| 147 | + 'location' => 'path', |
|
| 148 | + 'type' => 'string', |
|
| 149 | + 'required' => true, |
|
| 150 | + ), |
|
| 151 | + 'adClientId' => array( |
|
| 152 | + 'location' => 'path', |
|
| 153 | + 'type' => 'string', |
|
| 154 | + 'required' => true, |
|
| 155 | + ), |
|
| 156 | + 'adUnitId' => array( |
|
| 157 | + 'location' => 'path', |
|
| 158 | + 'type' => 'string', |
|
| 159 | + 'required' => true, |
|
| 160 | + ), |
|
| 161 | + ), |
|
| 162 | + ),'get' => array( |
|
| 163 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', |
|
| 164 | + 'httpMethod' => 'GET', |
|
| 165 | + 'parameters' => array( |
|
| 166 | + 'accountId' => array( |
|
| 167 | + 'location' => 'path', |
|
| 168 | + 'type' => 'string', |
|
| 169 | + 'required' => true, |
|
| 170 | + ), |
|
| 171 | + 'adClientId' => array( |
|
| 172 | + 'location' => 'path', |
|
| 173 | + 'type' => 'string', |
|
| 174 | + 'required' => true, |
|
| 175 | + ), |
|
| 176 | + 'adUnitId' => array( |
|
| 177 | + 'location' => 'path', |
|
| 178 | + 'type' => 'string', |
|
| 179 | + 'required' => true, |
|
| 180 | + ), |
|
| 181 | + ), |
|
| 182 | + ),'getAdCode' => array( |
|
| 183 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', |
|
| 184 | + 'httpMethod' => 'GET', |
|
| 185 | + 'parameters' => array( |
|
| 186 | + 'accountId' => array( |
|
| 187 | + 'location' => 'path', |
|
| 188 | + 'type' => 'string', |
|
| 189 | + 'required' => true, |
|
| 190 | + ), |
|
| 191 | + 'adClientId' => array( |
|
| 192 | + 'location' => 'path', |
|
| 193 | + 'type' => 'string', |
|
| 194 | + 'required' => true, |
|
| 195 | + ), |
|
| 196 | + 'adUnitId' => array( |
|
| 197 | + 'location' => 'path', |
|
| 198 | + 'type' => 'string', |
|
| 199 | + 'required' => true, |
|
| 200 | + ), |
|
| 201 | + 'hostCustomChannelId' => array( |
|
| 202 | + 'location' => 'query', |
|
| 203 | + 'type' => 'string', |
|
| 204 | + 'repeated' => true, |
|
| 205 | + ), |
|
| 206 | + ), |
|
| 207 | + ),'insert' => array( |
|
| 208 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 209 | + 'httpMethod' => 'POST', |
|
| 210 | + 'parameters' => array( |
|
| 211 | + 'accountId' => array( |
|
| 212 | + 'location' => 'path', |
|
| 213 | + 'type' => 'string', |
|
| 214 | + 'required' => true, |
|
| 215 | + ), |
|
| 216 | + 'adClientId' => array( |
|
| 217 | + 'location' => 'path', |
|
| 218 | + 'type' => 'string', |
|
| 219 | + 'required' => true, |
|
| 220 | + ), |
|
| 221 | + ), |
|
| 222 | + ),'list' => array( |
|
| 223 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 224 | + 'httpMethod' => 'GET', |
|
| 225 | + 'parameters' => array( |
|
| 226 | + 'accountId' => array( |
|
| 227 | + 'location' => 'path', |
|
| 228 | + 'type' => 'string', |
|
| 229 | + 'required' => true, |
|
| 230 | + ), |
|
| 231 | + 'adClientId' => array( |
|
| 232 | + 'location' => 'path', |
|
| 233 | + 'type' => 'string', |
|
| 234 | + 'required' => true, |
|
| 235 | + ), |
|
| 236 | + 'includeInactive' => array( |
|
| 237 | + 'location' => 'query', |
|
| 238 | + 'type' => 'boolean', |
|
| 239 | + ), |
|
| 240 | + 'pageToken' => array( |
|
| 241 | + 'location' => 'query', |
|
| 242 | + 'type' => 'string', |
|
| 243 | + ), |
|
| 244 | + 'maxResults' => array( |
|
| 245 | + 'location' => 'query', |
|
| 246 | + 'type' => 'integer', |
|
| 247 | + ), |
|
| 248 | + ), |
|
| 249 | + ),'patch' => array( |
|
| 250 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 251 | + 'httpMethod' => 'PATCH', |
|
| 252 | + 'parameters' => array( |
|
| 253 | + 'accountId' => array( |
|
| 254 | + 'location' => 'path', |
|
| 255 | + 'type' => 'string', |
|
| 256 | + 'required' => true, |
|
| 257 | + ), |
|
| 258 | + 'adClientId' => array( |
|
| 259 | + 'location' => 'path', |
|
| 260 | + 'type' => 'string', |
|
| 261 | + 'required' => true, |
|
| 262 | + ), |
|
| 263 | + 'adUnitId' => array( |
|
| 264 | + 'location' => 'query', |
|
| 265 | + 'type' => 'string', |
|
| 266 | + 'required' => true, |
|
| 267 | + ), |
|
| 268 | + ), |
|
| 269 | + ),'update' => array( |
|
| 270 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
|
| 271 | + 'httpMethod' => 'PUT', |
|
| 272 | + 'parameters' => array( |
|
| 273 | + 'accountId' => array( |
|
| 274 | + 'location' => 'path', |
|
| 275 | + 'type' => 'string', |
|
| 276 | + 'required' => true, |
|
| 277 | + ), |
|
| 278 | + 'adClientId' => array( |
|
| 279 | + 'location' => 'path', |
|
| 280 | + 'type' => 'string', |
|
| 281 | + 'required' => true, |
|
| 282 | + ), |
|
| 283 | + ), |
|
| 284 | + ), |
|
| 285 | + ) |
|
| 286 | + ) |
|
| 287 | + ); |
|
| 288 | + $this->accounts_reports = new Google_Service_AdSenseHost_AccountsReports_Resource( |
|
| 289 | + $this, |
|
| 290 | + $this->serviceName, |
|
| 291 | + 'reports', |
|
| 292 | + array( |
|
| 293 | + 'methods' => array( |
|
| 294 | + 'generate' => array( |
|
| 295 | + 'path' => 'accounts/{accountId}/reports', |
|
| 296 | + 'httpMethod' => 'GET', |
|
| 297 | + 'parameters' => array( |
|
| 298 | + 'accountId' => array( |
|
| 299 | + 'location' => 'path', |
|
| 300 | + 'type' => 'string', |
|
| 301 | + 'required' => true, |
|
| 302 | + ), |
|
| 303 | + 'startDate' => array( |
|
| 304 | + 'location' => 'query', |
|
| 305 | + 'type' => 'string', |
|
| 306 | + 'required' => true, |
|
| 307 | + ), |
|
| 308 | + 'endDate' => array( |
|
| 309 | + 'location' => 'query', |
|
| 310 | + 'type' => 'string', |
|
| 311 | + 'required' => true, |
|
| 312 | + ), |
|
| 313 | + 'sort' => array( |
|
| 314 | + 'location' => 'query', |
|
| 315 | + 'type' => 'string', |
|
| 316 | + 'repeated' => true, |
|
| 317 | + ), |
|
| 318 | + 'locale' => array( |
|
| 319 | + 'location' => 'query', |
|
| 320 | + 'type' => 'string', |
|
| 321 | + ), |
|
| 322 | + 'metric' => array( |
|
| 323 | + 'location' => 'query', |
|
| 324 | + 'type' => 'string', |
|
| 325 | + 'repeated' => true, |
|
| 326 | + ), |
|
| 327 | + 'maxResults' => array( |
|
| 328 | + 'location' => 'query', |
|
| 329 | + 'type' => 'integer', |
|
| 330 | + ), |
|
| 331 | + 'filter' => array( |
|
| 332 | + 'location' => 'query', |
|
| 333 | + 'type' => 'string', |
|
| 334 | + 'repeated' => true, |
|
| 335 | + ), |
|
| 336 | + 'startIndex' => array( |
|
| 337 | + 'location' => 'query', |
|
| 338 | + 'type' => 'integer', |
|
| 339 | + ), |
|
| 340 | + 'dimension' => array( |
|
| 341 | + 'location' => 'query', |
|
| 342 | + 'type' => 'string', |
|
| 343 | + 'repeated' => true, |
|
| 344 | + ), |
|
| 345 | + ), |
|
| 346 | + ), |
|
| 347 | + ) |
|
| 348 | + ) |
|
| 349 | + ); |
|
| 350 | + $this->adclients = new Google_Service_AdSenseHost_Adclients_Resource( |
|
| 351 | + $this, |
|
| 352 | + $this->serviceName, |
|
| 353 | + 'adclients', |
|
| 354 | + array( |
|
| 355 | + 'methods' => array( |
|
| 356 | + 'get' => array( |
|
| 357 | + 'path' => 'adclients/{adClientId}', |
|
| 358 | + 'httpMethod' => 'GET', |
|
| 359 | + 'parameters' => array( |
|
| 360 | + 'adClientId' => array( |
|
| 361 | + 'location' => 'path', |
|
| 362 | + 'type' => 'string', |
|
| 363 | + 'required' => true, |
|
| 364 | + ), |
|
| 365 | + ), |
|
| 366 | + ),'list' => array( |
|
| 367 | + 'path' => 'adclients', |
|
| 368 | + 'httpMethod' => 'GET', |
|
| 369 | + 'parameters' => array( |
|
| 370 | + 'pageToken' => array( |
|
| 371 | + 'location' => 'query', |
|
| 372 | + 'type' => 'string', |
|
| 373 | + ), |
|
| 374 | + 'maxResults' => array( |
|
| 375 | + 'location' => 'query', |
|
| 376 | + 'type' => 'integer', |
|
| 377 | + ), |
|
| 378 | + ), |
|
| 379 | + ), |
|
| 380 | + ) |
|
| 381 | + ) |
|
| 382 | + ); |
|
| 383 | + $this->associationsessions = new Google_Service_AdSenseHost_Associationsessions_Resource( |
|
| 384 | + $this, |
|
| 385 | + $this->serviceName, |
|
| 386 | + 'associationsessions', |
|
| 387 | + array( |
|
| 388 | + 'methods' => array( |
|
| 389 | + 'start' => array( |
|
| 390 | + 'path' => 'associationsessions/start', |
|
| 391 | + 'httpMethod' => 'GET', |
|
| 392 | + 'parameters' => array( |
|
| 393 | + 'productCode' => array( |
|
| 394 | + 'location' => 'query', |
|
| 395 | + 'type' => 'string', |
|
| 396 | + 'repeated' => true, |
|
| 397 | + 'required' => true, |
|
| 398 | + ), |
|
| 399 | + 'websiteUrl' => array( |
|
| 400 | + 'location' => 'query', |
|
| 401 | + 'type' => 'string', |
|
| 402 | + 'required' => true, |
|
| 403 | + ), |
|
| 404 | + 'websiteLocale' => array( |
|
| 405 | + 'location' => 'query', |
|
| 406 | + 'type' => 'string', |
|
| 407 | + ), |
|
| 408 | + 'userLocale' => array( |
|
| 409 | + 'location' => 'query', |
|
| 410 | + 'type' => 'string', |
|
| 411 | + ), |
|
| 412 | + ), |
|
| 413 | + ),'verify' => array( |
|
| 414 | + 'path' => 'associationsessions/verify', |
|
| 415 | + 'httpMethod' => 'GET', |
|
| 416 | + 'parameters' => array( |
|
| 417 | + 'token' => array( |
|
| 418 | + 'location' => 'query', |
|
| 419 | + 'type' => 'string', |
|
| 420 | + 'required' => true, |
|
| 421 | + ), |
|
| 422 | + ), |
|
| 423 | + ), |
|
| 424 | + ) |
|
| 425 | + ) |
|
| 426 | + ); |
|
| 427 | + $this->customchannels = new Google_Service_AdSenseHost_Customchannels_Resource( |
|
| 428 | + $this, |
|
| 429 | + $this->serviceName, |
|
| 430 | + 'customchannels', |
|
| 431 | + array( |
|
| 432 | + 'methods' => array( |
|
| 433 | + 'delete' => array( |
|
| 434 | + 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 435 | + 'httpMethod' => 'DELETE', |
|
| 436 | + 'parameters' => array( |
|
| 437 | + 'adClientId' => array( |
|
| 438 | + 'location' => 'path', |
|
| 439 | + 'type' => 'string', |
|
| 440 | + 'required' => true, |
|
| 441 | + ), |
|
| 442 | + 'customChannelId' => array( |
|
| 443 | + 'location' => 'path', |
|
| 444 | + 'type' => 'string', |
|
| 445 | + 'required' => true, |
|
| 446 | + ), |
|
| 447 | + ), |
|
| 448 | + ),'get' => array( |
|
| 449 | + 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 450 | + 'httpMethod' => 'GET', |
|
| 451 | + 'parameters' => array( |
|
| 452 | + 'adClientId' => array( |
|
| 453 | + 'location' => 'path', |
|
| 454 | + 'type' => 'string', |
|
| 455 | + 'required' => true, |
|
| 456 | + ), |
|
| 457 | + 'customChannelId' => array( |
|
| 458 | + 'location' => 'path', |
|
| 459 | + 'type' => 'string', |
|
| 460 | + 'required' => true, |
|
| 461 | + ), |
|
| 462 | + ), |
|
| 463 | + ),'insert' => array( |
|
| 464 | + 'path' => 'adclients/{adClientId}/customchannels', |
|
| 465 | + 'httpMethod' => 'POST', |
|
| 466 | + 'parameters' => array( |
|
| 467 | + 'adClientId' => array( |
|
| 468 | + 'location' => 'path', |
|
| 469 | + 'type' => 'string', |
|
| 470 | + 'required' => true, |
|
| 471 | + ), |
|
| 472 | + ), |
|
| 473 | + ),'list' => array( |
|
| 474 | + 'path' => 'adclients/{adClientId}/customchannels', |
|
| 475 | + 'httpMethod' => 'GET', |
|
| 476 | + 'parameters' => array( |
|
| 477 | + 'adClientId' => array( |
|
| 478 | + 'location' => 'path', |
|
| 479 | + 'type' => 'string', |
|
| 480 | + 'required' => true, |
|
| 481 | + ), |
|
| 482 | + 'pageToken' => array( |
|
| 483 | + 'location' => 'query', |
|
| 484 | + 'type' => 'string', |
|
| 485 | + ), |
|
| 486 | + 'maxResults' => array( |
|
| 487 | + 'location' => 'query', |
|
| 488 | + 'type' => 'integer', |
|
| 489 | + ), |
|
| 490 | + ), |
|
| 491 | + ),'patch' => array( |
|
| 492 | + 'path' => 'adclients/{adClientId}/customchannels', |
|
| 493 | + 'httpMethod' => 'PATCH', |
|
| 494 | + 'parameters' => array( |
|
| 495 | + 'adClientId' => array( |
|
| 496 | + 'location' => 'path', |
|
| 497 | + 'type' => 'string', |
|
| 498 | + 'required' => true, |
|
| 499 | + ), |
|
| 500 | + 'customChannelId' => array( |
|
| 501 | + 'location' => 'query', |
|
| 502 | + 'type' => 'string', |
|
| 503 | + 'required' => true, |
|
| 504 | + ), |
|
| 505 | + ), |
|
| 506 | + ),'update' => array( |
|
| 507 | + 'path' => 'adclients/{adClientId}/customchannels', |
|
| 508 | + 'httpMethod' => 'PUT', |
|
| 509 | + 'parameters' => array( |
|
| 510 | + 'adClientId' => array( |
|
| 511 | + 'location' => 'path', |
|
| 512 | + 'type' => 'string', |
|
| 513 | + 'required' => true, |
|
| 514 | + ), |
|
| 515 | + ), |
|
| 516 | + ), |
|
| 517 | + ) |
|
| 518 | + ) |
|
| 519 | + ); |
|
| 520 | + $this->reports = new Google_Service_AdSenseHost_Reports_Resource( |
|
| 521 | + $this, |
|
| 522 | + $this->serviceName, |
|
| 523 | + 'reports', |
|
| 524 | + array( |
|
| 525 | + 'methods' => array( |
|
| 526 | + 'generate' => array( |
|
| 527 | + 'path' => 'reports', |
|
| 528 | + 'httpMethod' => 'GET', |
|
| 529 | + 'parameters' => array( |
|
| 530 | + 'startDate' => array( |
|
| 531 | + 'location' => 'query', |
|
| 532 | + 'type' => 'string', |
|
| 533 | + 'required' => true, |
|
| 534 | + ), |
|
| 535 | + 'endDate' => array( |
|
| 536 | + 'location' => 'query', |
|
| 537 | + 'type' => 'string', |
|
| 538 | + 'required' => true, |
|
| 539 | + ), |
|
| 540 | + 'sort' => array( |
|
| 541 | + 'location' => 'query', |
|
| 542 | + 'type' => 'string', |
|
| 543 | + 'repeated' => true, |
|
| 544 | + ), |
|
| 545 | + 'locale' => array( |
|
| 546 | + 'location' => 'query', |
|
| 547 | + 'type' => 'string', |
|
| 548 | + ), |
|
| 549 | + 'metric' => array( |
|
| 550 | + 'location' => 'query', |
|
| 551 | + 'type' => 'string', |
|
| 552 | + 'repeated' => true, |
|
| 553 | + ), |
|
| 554 | + 'maxResults' => array( |
|
| 555 | + 'location' => 'query', |
|
| 556 | + 'type' => 'integer', |
|
| 557 | + ), |
|
| 558 | + 'filter' => array( |
|
| 559 | + 'location' => 'query', |
|
| 560 | + 'type' => 'string', |
|
| 561 | + 'repeated' => true, |
|
| 562 | + ), |
|
| 563 | + 'startIndex' => array( |
|
| 564 | + 'location' => 'query', |
|
| 565 | + 'type' => 'integer', |
|
| 566 | + ), |
|
| 567 | + 'dimension' => array( |
|
| 568 | + 'location' => 'query', |
|
| 569 | + 'type' => 'string', |
|
| 570 | + 'repeated' => true, |
|
| 571 | + ), |
|
| 572 | + ), |
|
| 573 | + ), |
|
| 574 | + ) |
|
| 575 | + ) |
|
| 576 | + ); |
|
| 577 | + $this->urlchannels = new Google_Service_AdSenseHost_Urlchannels_Resource( |
|
| 578 | + $this, |
|
| 579 | + $this->serviceName, |
|
| 580 | + 'urlchannels', |
|
| 581 | + array( |
|
| 582 | + 'methods' => array( |
|
| 583 | + 'delete' => array( |
|
| 584 | + 'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}', |
|
| 585 | + 'httpMethod' => 'DELETE', |
|
| 586 | + 'parameters' => array( |
|
| 587 | + 'adClientId' => array( |
|
| 588 | + 'location' => 'path', |
|
| 589 | + 'type' => 'string', |
|
| 590 | + 'required' => true, |
|
| 591 | + ), |
|
| 592 | + 'urlChannelId' => array( |
|
| 593 | + 'location' => 'path', |
|
| 594 | + 'type' => 'string', |
|
| 595 | + 'required' => true, |
|
| 596 | + ), |
|
| 597 | + ), |
|
| 598 | + ),'insert' => array( |
|
| 599 | + 'path' => 'adclients/{adClientId}/urlchannels', |
|
| 600 | + 'httpMethod' => 'POST', |
|
| 601 | + 'parameters' => array( |
|
| 602 | + 'adClientId' => array( |
|
| 603 | + 'location' => 'path', |
|
| 604 | + 'type' => 'string', |
|
| 605 | + 'required' => true, |
|
| 606 | + ), |
|
| 607 | + ), |
|
| 608 | + ),'list' => array( |
|
| 609 | + 'path' => 'adclients/{adClientId}/urlchannels', |
|
| 610 | + 'httpMethod' => 'GET', |
|
| 611 | + 'parameters' => array( |
|
| 612 | + 'adClientId' => array( |
|
| 613 | + 'location' => 'path', |
|
| 614 | + 'type' => 'string', |
|
| 615 | + 'required' => true, |
|
| 616 | + ), |
|
| 617 | + 'pageToken' => array( |
|
| 618 | + 'location' => 'query', |
|
| 619 | + 'type' => 'string', |
|
| 620 | + ), |
|
| 621 | + 'maxResults' => array( |
|
| 622 | + 'location' => 'query', |
|
| 623 | + 'type' => 'integer', |
|
| 624 | + ), |
|
| 625 | + ), |
|
| 626 | + ), |
|
| 627 | + ) |
|
| 628 | + ) |
|
| 629 | + ); |
|
| 630 | 630 | } |
| 631 | 631 | } |
| 632 | 632 | |
@@ -651,9 +651,9 @@ discard block |
||
| 651 | 651 | */ |
| 652 | 652 | public function get($accountId, $optParams = array()) |
| 653 | 653 | { |
| 654 | - $params = array('accountId' => $accountId); |
|
| 655 | - $params = array_merge($params, $optParams); |
|
| 656 | - return $this->call('get', array($params), "Google_Service_AdSenseHost_Account"); |
|
| 654 | + $params = array('accountId' => $accountId); |
|
| 655 | + $params = array_merge($params, $optParams); |
|
| 656 | + return $this->call('get', array($params), "Google_Service_AdSenseHost_Account"); |
|
| 657 | 657 | } |
| 658 | 658 | |
| 659 | 659 | /** |
@@ -666,9 +666,9 @@ discard block |
||
| 666 | 666 | */ |
| 667 | 667 | public function listAccounts($filterAdClientId, $optParams = array()) |
| 668 | 668 | { |
| 669 | - $params = array('filterAdClientId' => $filterAdClientId); |
|
| 670 | - $params = array_merge($params, $optParams); |
|
| 671 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_Accounts"); |
|
| 669 | + $params = array('filterAdClientId' => $filterAdClientId); |
|
| 670 | + $params = array_merge($params, $optParams); |
|
| 671 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_Accounts"); |
|
| 672 | 672 | } |
| 673 | 673 | } |
| 674 | 674 | |
@@ -694,9 +694,9 @@ discard block |
||
| 694 | 694 | */ |
| 695 | 695 | public function get($accountId, $adClientId, $optParams = array()) |
| 696 | 696 | { |
| 697 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 698 | - $params = array_merge($params, $optParams); |
|
| 699 | - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); |
|
| 697 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 698 | + $params = array_merge($params, $optParams); |
|
| 699 | + return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); |
|
| 700 | 700 | } |
| 701 | 701 | |
| 702 | 702 | /** |
@@ -715,9 +715,9 @@ discard block |
||
| 715 | 715 | */ |
| 716 | 716 | public function listAccountsAdclients($accountId, $optParams = array()) |
| 717 | 717 | { |
| 718 | - $params = array('accountId' => $accountId); |
|
| 719 | - $params = array_merge($params, $optParams); |
|
| 720 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); |
|
| 718 | + $params = array('accountId' => $accountId); |
|
| 719 | + $params = array_merge($params, $optParams); |
|
| 720 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); |
|
| 721 | 721 | } |
| 722 | 722 | } |
| 723 | 723 | /** |
@@ -743,9 +743,9 @@ discard block |
||
| 743 | 743 | */ |
| 744 | 744 | public function delete($accountId, $adClientId, $adUnitId, $optParams = array()) |
| 745 | 745 | { |
| 746 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 747 | - $params = array_merge($params, $optParams); |
|
| 748 | - return $this->call('delete', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 746 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 747 | + $params = array_merge($params, $optParams); |
|
| 748 | + return $this->call('delete', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 749 | 749 | } |
| 750 | 750 | |
| 751 | 751 | /** |
@@ -759,9 +759,9 @@ discard block |
||
| 759 | 759 | */ |
| 760 | 760 | public function get($accountId, $adClientId, $adUnitId, $optParams = array()) |
| 761 | 761 | { |
| 762 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 763 | - $params = array_merge($params, $optParams); |
|
| 764 | - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 762 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 763 | + $params = array_merge($params, $optParams); |
|
| 764 | + return $this->call('get', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 765 | 765 | } |
| 766 | 766 | |
| 767 | 767 | /** |
@@ -779,9 +779,9 @@ discard block |
||
| 779 | 779 | */ |
| 780 | 780 | public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array()) |
| 781 | 781 | { |
| 782 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 783 | - $params = array_merge($params, $optParams); |
|
| 784 | - return $this->call('getAdCode', array($params), "Google_Service_AdSenseHost_AdCode"); |
|
| 782 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId); |
|
| 783 | + $params = array_merge($params, $optParams); |
|
| 784 | + return $this->call('getAdCode', array($params), "Google_Service_AdSenseHost_AdCode"); |
|
| 785 | 785 | } |
| 786 | 786 | |
| 787 | 787 | /** |
@@ -796,9 +796,9 @@ discard block |
||
| 796 | 796 | */ |
| 797 | 797 | public function insert($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) |
| 798 | 798 | { |
| 799 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 800 | - $params = array_merge($params, $optParams); |
|
| 801 | - return $this->call('insert', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 799 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 800 | + $params = array_merge($params, $optParams); |
|
| 801 | + return $this->call('insert', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 802 | 802 | } |
| 803 | 803 | |
| 804 | 804 | /** |
@@ -820,9 +820,9 @@ discard block |
||
| 820 | 820 | */ |
| 821 | 821 | public function listAccountsAdunits($accountId, $adClientId, $optParams = array()) |
| 822 | 822 | { |
| 823 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 824 | - $params = array_merge($params, $optParams); |
|
| 825 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdUnits"); |
|
| 823 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 824 | + $params = array_merge($params, $optParams); |
|
| 825 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_AdUnits"); |
|
| 826 | 826 | } |
| 827 | 827 | |
| 828 | 828 | /** |
@@ -838,9 +838,9 @@ discard block |
||
| 838 | 838 | */ |
| 839 | 839 | public function patch($accountId, $adClientId, $adUnitId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) |
| 840 | 840 | { |
| 841 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody); |
|
| 842 | - $params = array_merge($params, $optParams); |
|
| 843 | - return $this->call('patch', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 841 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody); |
|
| 842 | + $params = array_merge($params, $optParams); |
|
| 843 | + return $this->call('patch', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | /** |
@@ -855,9 +855,9 @@ discard block |
||
| 855 | 855 | */ |
| 856 | 856 | public function update($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array()) |
| 857 | 857 | { |
| 858 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 859 | - $params = array_merge($params, $optParams); |
|
| 860 | - return $this->call('update', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 858 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 859 | + $params = array_merge($params, $optParams); |
|
| 860 | + return $this->call('update', array($params), "Google_Service_AdSenseHost_AdUnit"); |
|
| 861 | 861 | } |
| 862 | 862 | } |
| 863 | 863 | /** |
@@ -898,9 +898,9 @@ discard block |
||
| 898 | 898 | */ |
| 899 | 899 | public function generate($accountId, $startDate, $endDate, $optParams = array()) |
| 900 | 900 | { |
| 901 | - $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); |
|
| 902 | - $params = array_merge($params, $optParams); |
|
| 903 | - return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); |
|
| 901 | + $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); |
|
| 902 | + $params = array_merge($params, $optParams); |
|
| 903 | + return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); |
|
| 904 | 904 | } |
| 905 | 905 | } |
| 906 | 906 | |
@@ -925,9 +925,9 @@ discard block |
||
| 925 | 925 | */ |
| 926 | 926 | public function get($adClientId, $optParams = array()) |
| 927 | 927 | { |
| 928 | - $params = array('adClientId' => $adClientId); |
|
| 929 | - $params = array_merge($params, $optParams); |
|
| 930 | - return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); |
|
| 928 | + $params = array('adClientId' => $adClientId); |
|
| 929 | + $params = array_merge($params, $optParams); |
|
| 930 | + return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient"); |
|
| 931 | 931 | } |
| 932 | 932 | |
| 933 | 933 | /** |
@@ -944,9 +944,9 @@ discard block |
||
| 944 | 944 | */ |
| 945 | 945 | public function listAdclients($optParams = array()) |
| 946 | 946 | { |
| 947 | - $params = array(); |
|
| 948 | - $params = array_merge($params, $optParams); |
|
| 949 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); |
|
| 947 | + $params = array(); |
|
| 948 | + $params = array_merge($params, $optParams); |
|
| 949 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients"); |
|
| 950 | 950 | } |
| 951 | 951 | } |
| 952 | 952 | |
@@ -975,9 +975,9 @@ discard block |
||
| 975 | 975 | */ |
| 976 | 976 | public function start($productCode, $websiteUrl, $optParams = array()) |
| 977 | 977 | { |
| 978 | - $params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl); |
|
| 979 | - $params = array_merge($params, $optParams); |
|
| 980 | - return $this->call('start', array($params), "Google_Service_AdSenseHost_AssociationSession"); |
|
| 978 | + $params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl); |
|
| 979 | + $params = array_merge($params, $optParams); |
|
| 980 | + return $this->call('start', array($params), "Google_Service_AdSenseHost_AssociationSession"); |
|
| 981 | 981 | } |
| 982 | 982 | |
| 983 | 983 | /** |
@@ -990,9 +990,9 @@ discard block |
||
| 990 | 990 | */ |
| 991 | 991 | public function verify($token, $optParams = array()) |
| 992 | 992 | { |
| 993 | - $params = array('token' => $token); |
|
| 994 | - $params = array_merge($params, $optParams); |
|
| 995 | - return $this->call('verify', array($params), "Google_Service_AdSenseHost_AssociationSession"); |
|
| 993 | + $params = array('token' => $token); |
|
| 994 | + $params = array_merge($params, $optParams); |
|
| 995 | + return $this->call('verify', array($params), "Google_Service_AdSenseHost_AssociationSession"); |
|
| 996 | 996 | } |
| 997 | 997 | } |
| 998 | 998 | |
@@ -1018,9 +1018,9 @@ discard block |
||
| 1018 | 1018 | */ |
| 1019 | 1019 | public function delete($adClientId, $customChannelId, $optParams = array()) |
| 1020 | 1020 | { |
| 1021 | - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 1022 | - $params = array_merge($params, $optParams); |
|
| 1023 | - return $this->call('delete', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1021 | + $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 1022 | + $params = array_merge($params, $optParams); |
|
| 1023 | + return $this->call('delete', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1024 | 1024 | } |
| 1025 | 1025 | |
| 1026 | 1026 | /** |
@@ -1034,9 +1034,9 @@ discard block |
||
| 1034 | 1034 | */ |
| 1035 | 1035 | public function get($adClientId, $customChannelId, $optParams = array()) |
| 1036 | 1036 | { |
| 1037 | - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 1038 | - $params = array_merge($params, $optParams); |
|
| 1039 | - return $this->call('get', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1037 | + $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 1038 | + $params = array_merge($params, $optParams); |
|
| 1039 | + return $this->call('get', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1040 | 1040 | } |
| 1041 | 1041 | |
| 1042 | 1042 | /** |
@@ -1050,9 +1050,9 @@ discard block |
||
| 1050 | 1050 | */ |
| 1051 | 1051 | public function insert($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) |
| 1052 | 1052 | { |
| 1053 | - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1054 | - $params = array_merge($params, $optParams); |
|
| 1055 | - return $this->call('insert', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1053 | + $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1054 | + $params = array_merge($params, $optParams); |
|
| 1055 | + return $this->call('insert', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1056 | 1056 | } |
| 1057 | 1057 | |
| 1058 | 1058 | /** |
@@ -1071,9 +1071,9 @@ discard block |
||
| 1071 | 1071 | */ |
| 1072 | 1072 | public function listCustomchannels($adClientId, $optParams = array()) |
| 1073 | 1073 | { |
| 1074 | - $params = array('adClientId' => $adClientId); |
|
| 1075 | - $params = array_merge($params, $optParams); |
|
| 1076 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_CustomChannels"); |
|
| 1074 | + $params = array('adClientId' => $adClientId); |
|
| 1075 | + $params = array_merge($params, $optParams); |
|
| 1076 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_CustomChannels"); |
|
| 1077 | 1077 | } |
| 1078 | 1078 | |
| 1079 | 1079 | /** |
@@ -1089,9 +1089,9 @@ discard block |
||
| 1089 | 1089 | */ |
| 1090 | 1090 | public function patch($adClientId, $customChannelId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) |
| 1091 | 1091 | { |
| 1092 | - $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody); |
|
| 1093 | - $params = array_merge($params, $optParams); |
|
| 1094 | - return $this->call('patch', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1092 | + $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody); |
|
| 1093 | + $params = array_merge($params, $optParams); |
|
| 1094 | + return $this->call('patch', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1095 | 1095 | } |
| 1096 | 1096 | |
| 1097 | 1097 | /** |
@@ -1105,9 +1105,9 @@ discard block |
||
| 1105 | 1105 | */ |
| 1106 | 1106 | public function update($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array()) |
| 1107 | 1107 | { |
| 1108 | - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1109 | - $params = array_merge($params, $optParams); |
|
| 1110 | - return $this->call('update', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1108 | + $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1109 | + $params = array_merge($params, $optParams); |
|
| 1110 | + return $this->call('update', array($params), "Google_Service_AdSenseHost_CustomChannel"); |
|
| 1111 | 1111 | } |
| 1112 | 1112 | } |
| 1113 | 1113 | |
@@ -1148,9 +1148,9 @@ discard block |
||
| 1148 | 1148 | */ |
| 1149 | 1149 | public function generate($startDate, $endDate, $optParams = array()) |
| 1150 | 1150 | { |
| 1151 | - $params = array('startDate' => $startDate, 'endDate' => $endDate); |
|
| 1152 | - $params = array_merge($params, $optParams); |
|
| 1153 | - return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); |
|
| 1151 | + $params = array('startDate' => $startDate, 'endDate' => $endDate); |
|
| 1152 | + $params = array_merge($params, $optParams); |
|
| 1153 | + return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report"); |
|
| 1154 | 1154 | } |
| 1155 | 1155 | } |
| 1156 | 1156 | |
@@ -1175,9 +1175,9 @@ discard block |
||
| 1175 | 1175 | */ |
| 1176 | 1176 | public function delete($adClientId, $urlChannelId, $optParams = array()) |
| 1177 | 1177 | { |
| 1178 | - $params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId); |
|
| 1179 | - $params = array_merge($params, $optParams); |
|
| 1180 | - return $this->call('delete', array($params), "Google_Service_AdSenseHost_UrlChannel"); |
|
| 1178 | + $params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId); |
|
| 1179 | + $params = array_merge($params, $optParams); |
|
| 1180 | + return $this->call('delete', array($params), "Google_Service_AdSenseHost_UrlChannel"); |
|
| 1181 | 1181 | } |
| 1182 | 1182 | |
| 1183 | 1183 | /** |
@@ -1191,9 +1191,9 @@ discard block |
||
| 1191 | 1191 | */ |
| 1192 | 1192 | public function insert($adClientId, Google_Service_AdSenseHost_UrlChannel $postBody, $optParams = array()) |
| 1193 | 1193 | { |
| 1194 | - $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1195 | - $params = array_merge($params, $optParams); |
|
| 1196 | - return $this->call('insert', array($params), "Google_Service_AdSenseHost_UrlChannel"); |
|
| 1194 | + $params = array('adClientId' => $adClientId, 'postBody' => $postBody); |
|
| 1195 | + $params = array_merge($params, $optParams); |
|
| 1196 | + return $this->call('insert', array($params), "Google_Service_AdSenseHost_UrlChannel"); |
|
| 1197 | 1197 | } |
| 1198 | 1198 | |
| 1199 | 1199 | /** |
@@ -1212,9 +1212,9 @@ discard block |
||
| 1212 | 1212 | */ |
| 1213 | 1213 | public function listUrlchannels($adClientId, $optParams = array()) |
| 1214 | 1214 | { |
| 1215 | - $params = array('adClientId' => $adClientId); |
|
| 1216 | - $params = array_merge($params, $optParams); |
|
| 1217 | - return $this->call('list', array($params), "Google_Service_AdSenseHost_UrlChannels"); |
|
| 1215 | + $params = array('adClientId' => $adClientId); |
|
| 1216 | + $params = array_merge($params, $optParams); |
|
| 1217 | + return $this->call('list', array($params), "Google_Service_AdSenseHost_UrlChannels"); |
|
| 1218 | 1218 | } |
| 1219 | 1219 | } |
| 1220 | 1220 | |
@@ -1233,35 +1233,35 @@ discard block |
||
| 1233 | 1233 | |
| 1234 | 1234 | public function setId($id) |
| 1235 | 1235 | { |
| 1236 | - $this->id = $id; |
|
| 1236 | + $this->id = $id; |
|
| 1237 | 1237 | } |
| 1238 | 1238 | public function getId() |
| 1239 | 1239 | { |
| 1240 | - return $this->id; |
|
| 1240 | + return $this->id; |
|
| 1241 | 1241 | } |
| 1242 | 1242 | public function setKind($kind) |
| 1243 | 1243 | { |
| 1244 | - $this->kind = $kind; |
|
| 1244 | + $this->kind = $kind; |
|
| 1245 | 1245 | } |
| 1246 | 1246 | public function getKind() |
| 1247 | 1247 | { |
| 1248 | - return $this->kind; |
|
| 1248 | + return $this->kind; |
|
| 1249 | 1249 | } |
| 1250 | 1250 | public function setName($name) |
| 1251 | 1251 | { |
| 1252 | - $this->name = $name; |
|
| 1252 | + $this->name = $name; |
|
| 1253 | 1253 | } |
| 1254 | 1254 | public function getName() |
| 1255 | 1255 | { |
| 1256 | - return $this->name; |
|
| 1256 | + return $this->name; |
|
| 1257 | 1257 | } |
| 1258 | 1258 | public function setStatus($status) |
| 1259 | 1259 | { |
| 1260 | - $this->status = $status; |
|
| 1260 | + $this->status = $status; |
|
| 1261 | 1261 | } |
| 1262 | 1262 | public function getStatus() |
| 1263 | 1263 | { |
| 1264 | - return $this->status; |
|
| 1264 | + return $this->status; |
|
| 1265 | 1265 | } |
| 1266 | 1266 | } |
| 1267 | 1267 | |
@@ -1278,27 +1278,27 @@ discard block |
||
| 1278 | 1278 | |
| 1279 | 1279 | public function setEtag($etag) |
| 1280 | 1280 | { |
| 1281 | - $this->etag = $etag; |
|
| 1281 | + $this->etag = $etag; |
|
| 1282 | 1282 | } |
| 1283 | 1283 | public function getEtag() |
| 1284 | 1284 | { |
| 1285 | - return $this->etag; |
|
| 1285 | + return $this->etag; |
|
| 1286 | 1286 | } |
| 1287 | 1287 | public function setItems($items) |
| 1288 | 1288 | { |
| 1289 | - $this->items = $items; |
|
| 1289 | + $this->items = $items; |
|
| 1290 | 1290 | } |
| 1291 | 1291 | public function getItems() |
| 1292 | 1292 | { |
| 1293 | - return $this->items; |
|
| 1293 | + return $this->items; |
|
| 1294 | 1294 | } |
| 1295 | 1295 | public function setKind($kind) |
| 1296 | 1296 | { |
| 1297 | - $this->kind = $kind; |
|
| 1297 | + $this->kind = $kind; |
|
| 1298 | 1298 | } |
| 1299 | 1299 | public function getKind() |
| 1300 | 1300 | { |
| 1301 | - return $this->kind; |
|
| 1301 | + return $this->kind; |
|
| 1302 | 1302 | } |
| 1303 | 1303 | } |
| 1304 | 1304 | |
@@ -1315,43 +1315,43 @@ discard block |
||
| 1315 | 1315 | |
| 1316 | 1316 | public function setArcOptIn($arcOptIn) |
| 1317 | 1317 | { |
| 1318 | - $this->arcOptIn = $arcOptIn; |
|
| 1318 | + $this->arcOptIn = $arcOptIn; |
|
| 1319 | 1319 | } |
| 1320 | 1320 | public function getArcOptIn() |
| 1321 | 1321 | { |
| 1322 | - return $this->arcOptIn; |
|
| 1322 | + return $this->arcOptIn; |
|
| 1323 | 1323 | } |
| 1324 | 1324 | public function setId($id) |
| 1325 | 1325 | { |
| 1326 | - $this->id = $id; |
|
| 1326 | + $this->id = $id; |
|
| 1327 | 1327 | } |
| 1328 | 1328 | public function getId() |
| 1329 | 1329 | { |
| 1330 | - return $this->id; |
|
| 1330 | + return $this->id; |
|
| 1331 | 1331 | } |
| 1332 | 1332 | public function setKind($kind) |
| 1333 | 1333 | { |
| 1334 | - $this->kind = $kind; |
|
| 1334 | + $this->kind = $kind; |
|
| 1335 | 1335 | } |
| 1336 | 1336 | public function getKind() |
| 1337 | 1337 | { |
| 1338 | - return $this->kind; |
|
| 1338 | + return $this->kind; |
|
| 1339 | 1339 | } |
| 1340 | 1340 | public function setProductCode($productCode) |
| 1341 | 1341 | { |
| 1342 | - $this->productCode = $productCode; |
|
| 1342 | + $this->productCode = $productCode; |
|
| 1343 | 1343 | } |
| 1344 | 1344 | public function getProductCode() |
| 1345 | 1345 | { |
| 1346 | - return $this->productCode; |
|
| 1346 | + return $this->productCode; |
|
| 1347 | 1347 | } |
| 1348 | 1348 | public function setSupportsReporting($supportsReporting) |
| 1349 | 1349 | { |
| 1350 | - $this->supportsReporting = $supportsReporting; |
|
| 1350 | + $this->supportsReporting = $supportsReporting; |
|
| 1351 | 1351 | } |
| 1352 | 1352 | public function getSupportsReporting() |
| 1353 | 1353 | { |
| 1354 | - return $this->supportsReporting; |
|
| 1354 | + return $this->supportsReporting; |
|
| 1355 | 1355 | } |
| 1356 | 1356 | } |
| 1357 | 1357 | |
@@ -1369,35 +1369,35 @@ discard block |
||
| 1369 | 1369 | |
| 1370 | 1370 | public function setEtag($etag) |
| 1371 | 1371 | { |
| 1372 | - $this->etag = $etag; |
|
| 1372 | + $this->etag = $etag; |
|
| 1373 | 1373 | } |
| 1374 | 1374 | public function getEtag() |
| 1375 | 1375 | { |
| 1376 | - return $this->etag; |
|
| 1376 | + return $this->etag; |
|
| 1377 | 1377 | } |
| 1378 | 1378 | public function setItems($items) |
| 1379 | 1379 | { |
| 1380 | - $this->items = $items; |
|
| 1380 | + $this->items = $items; |
|
| 1381 | 1381 | } |
| 1382 | 1382 | public function getItems() |
| 1383 | 1383 | { |
| 1384 | - return $this->items; |
|
| 1384 | + return $this->items; |
|
| 1385 | 1385 | } |
| 1386 | 1386 | public function setKind($kind) |
| 1387 | 1387 | { |
| 1388 | - $this->kind = $kind; |
|
| 1388 | + $this->kind = $kind; |
|
| 1389 | 1389 | } |
| 1390 | 1390 | public function getKind() |
| 1391 | 1391 | { |
| 1392 | - return $this->kind; |
|
| 1392 | + return $this->kind; |
|
| 1393 | 1393 | } |
| 1394 | 1394 | public function setNextPageToken($nextPageToken) |
| 1395 | 1395 | { |
| 1396 | - $this->nextPageToken = $nextPageToken; |
|
| 1396 | + $this->nextPageToken = $nextPageToken; |
|
| 1397 | 1397 | } |
| 1398 | 1398 | public function getNextPageToken() |
| 1399 | 1399 | { |
| 1400 | - return $this->nextPageToken; |
|
| 1400 | + return $this->nextPageToken; |
|
| 1401 | 1401 | } |
| 1402 | 1402 | } |
| 1403 | 1403 | |
@@ -1411,19 +1411,19 @@ discard block |
||
| 1411 | 1411 | |
| 1412 | 1412 | public function setAdCode($adCode) |
| 1413 | 1413 | { |
| 1414 | - $this->adCode = $adCode; |
|
| 1414 | + $this->adCode = $adCode; |
|
| 1415 | 1415 | } |
| 1416 | 1416 | public function getAdCode() |
| 1417 | 1417 | { |
| 1418 | - return $this->adCode; |
|
| 1418 | + return $this->adCode; |
|
| 1419 | 1419 | } |
| 1420 | 1420 | public function setKind($kind) |
| 1421 | 1421 | { |
| 1422 | - $this->kind = $kind; |
|
| 1422 | + $this->kind = $kind; |
|
| 1423 | 1423 | } |
| 1424 | 1424 | public function getKind() |
| 1425 | 1425 | { |
| 1426 | - return $this->kind; |
|
| 1426 | + return $this->kind; |
|
| 1427 | 1427 | } |
| 1428 | 1428 | } |
| 1429 | 1429 | |
@@ -1441,35 +1441,35 @@ discard block |
||
| 1441 | 1441 | |
| 1442 | 1442 | public function setColors(Google_Service_AdSenseHost_AdStyleColors $colors) |
| 1443 | 1443 | { |
| 1444 | - $this->colors = $colors; |
|
| 1444 | + $this->colors = $colors; |
|
| 1445 | 1445 | } |
| 1446 | 1446 | public function getColors() |
| 1447 | 1447 | { |
| 1448 | - return $this->colors; |
|
| 1448 | + return $this->colors; |
|
| 1449 | 1449 | } |
| 1450 | 1450 | public function setCorners($corners) |
| 1451 | 1451 | { |
| 1452 | - $this->corners = $corners; |
|
| 1452 | + $this->corners = $corners; |
|
| 1453 | 1453 | } |
| 1454 | 1454 | public function getCorners() |
| 1455 | 1455 | { |
| 1456 | - return $this->corners; |
|
| 1456 | + return $this->corners; |
|
| 1457 | 1457 | } |
| 1458 | 1458 | public function setFont(Google_Service_AdSenseHost_AdStyleFont $font) |
| 1459 | 1459 | { |
| 1460 | - $this->font = $font; |
|
| 1460 | + $this->font = $font; |
|
| 1461 | 1461 | } |
| 1462 | 1462 | public function getFont() |
| 1463 | 1463 | { |
| 1464 | - return $this->font; |
|
| 1464 | + return $this->font; |
|
| 1465 | 1465 | } |
| 1466 | 1466 | public function setKind($kind) |
| 1467 | 1467 | { |
| 1468 | - $this->kind = $kind; |
|
| 1468 | + $this->kind = $kind; |
|
| 1469 | 1469 | } |
| 1470 | 1470 | public function getKind() |
| 1471 | 1471 | { |
| 1472 | - return $this->kind; |
|
| 1472 | + return $this->kind; |
|
| 1473 | 1473 | } |
| 1474 | 1474 | } |
| 1475 | 1475 | |
@@ -1486,43 +1486,43 @@ discard block |
||
| 1486 | 1486 | |
| 1487 | 1487 | public function setBackground($background) |
| 1488 | 1488 | { |
| 1489 | - $this->background = $background; |
|
| 1489 | + $this->background = $background; |
|
| 1490 | 1490 | } |
| 1491 | 1491 | public function getBackground() |
| 1492 | 1492 | { |
| 1493 | - return $this->background; |
|
| 1493 | + return $this->background; |
|
| 1494 | 1494 | } |
| 1495 | 1495 | public function setBorder($border) |
| 1496 | 1496 | { |
| 1497 | - $this->border = $border; |
|
| 1497 | + $this->border = $border; |
|
| 1498 | 1498 | } |
| 1499 | 1499 | public function getBorder() |
| 1500 | 1500 | { |
| 1501 | - return $this->border; |
|
| 1501 | + return $this->border; |
|
| 1502 | 1502 | } |
| 1503 | 1503 | public function setText($text) |
| 1504 | 1504 | { |
| 1505 | - $this->text = $text; |
|
| 1505 | + $this->text = $text; |
|
| 1506 | 1506 | } |
| 1507 | 1507 | public function getText() |
| 1508 | 1508 | { |
| 1509 | - return $this->text; |
|
| 1509 | + return $this->text; |
|
| 1510 | 1510 | } |
| 1511 | 1511 | public function setTitle($title) |
| 1512 | 1512 | { |
| 1513 | - $this->title = $title; |
|
| 1513 | + $this->title = $title; |
|
| 1514 | 1514 | } |
| 1515 | 1515 | public function getTitle() |
| 1516 | 1516 | { |
| 1517 | - return $this->title; |
|
| 1517 | + return $this->title; |
|
| 1518 | 1518 | } |
| 1519 | 1519 | public function setUrl($url) |
| 1520 | 1520 | { |
| 1521 | - $this->url = $url; |
|
| 1521 | + $this->url = $url; |
|
| 1522 | 1522 | } |
| 1523 | 1523 | public function getUrl() |
| 1524 | 1524 | { |
| 1525 | - return $this->url; |
|
| 1525 | + return $this->url; |
|
| 1526 | 1526 | } |
| 1527 | 1527 | } |
| 1528 | 1528 | |
@@ -1536,19 +1536,19 @@ discard block |
||
| 1536 | 1536 | |
| 1537 | 1537 | public function setFamily($family) |
| 1538 | 1538 | { |
| 1539 | - $this->family = $family; |
|
| 1539 | + $this->family = $family; |
|
| 1540 | 1540 | } |
| 1541 | 1541 | public function getFamily() |
| 1542 | 1542 | { |
| 1543 | - return $this->family; |
|
| 1543 | + return $this->family; |
|
| 1544 | 1544 | } |
| 1545 | 1545 | public function setSize($size) |
| 1546 | 1546 | { |
| 1547 | - $this->size = $size; |
|
| 1547 | + $this->size = $size; |
|
| 1548 | 1548 | } |
| 1549 | 1549 | public function getSize() |
| 1550 | 1550 | { |
| 1551 | - return $this->size; |
|
| 1551 | + return $this->size; |
|
| 1552 | 1552 | } |
| 1553 | 1553 | } |
| 1554 | 1554 | |
@@ -1571,67 +1571,67 @@ discard block |
||
| 1571 | 1571 | |
| 1572 | 1572 | public function setCode($code) |
| 1573 | 1573 | { |
| 1574 | - $this->code = $code; |
|
| 1574 | + $this->code = $code; |
|
| 1575 | 1575 | } |
| 1576 | 1576 | public function getCode() |
| 1577 | 1577 | { |
| 1578 | - return $this->code; |
|
| 1578 | + return $this->code; |
|
| 1579 | 1579 | } |
| 1580 | 1580 | public function setContentAdsSettings(Google_Service_AdSenseHost_AdUnitContentAdsSettings $contentAdsSettings) |
| 1581 | 1581 | { |
| 1582 | - $this->contentAdsSettings = $contentAdsSettings; |
|
| 1582 | + $this->contentAdsSettings = $contentAdsSettings; |
|
| 1583 | 1583 | } |
| 1584 | 1584 | public function getContentAdsSettings() |
| 1585 | 1585 | { |
| 1586 | - return $this->contentAdsSettings; |
|
| 1586 | + return $this->contentAdsSettings; |
|
| 1587 | 1587 | } |
| 1588 | 1588 | public function setCustomStyle(Google_Service_AdSenseHost_AdStyle $customStyle) |
| 1589 | 1589 | { |
| 1590 | - $this->customStyle = $customStyle; |
|
| 1590 | + $this->customStyle = $customStyle; |
|
| 1591 | 1591 | } |
| 1592 | 1592 | public function getCustomStyle() |
| 1593 | 1593 | { |
| 1594 | - return $this->customStyle; |
|
| 1594 | + return $this->customStyle; |
|
| 1595 | 1595 | } |
| 1596 | 1596 | public function setId($id) |
| 1597 | 1597 | { |
| 1598 | - $this->id = $id; |
|
| 1598 | + $this->id = $id; |
|
| 1599 | 1599 | } |
| 1600 | 1600 | public function getId() |
| 1601 | 1601 | { |
| 1602 | - return $this->id; |
|
| 1602 | + return $this->id; |
|
| 1603 | 1603 | } |
| 1604 | 1604 | public function setKind($kind) |
| 1605 | 1605 | { |
| 1606 | - $this->kind = $kind; |
|
| 1606 | + $this->kind = $kind; |
|
| 1607 | 1607 | } |
| 1608 | 1608 | public function getKind() |
| 1609 | 1609 | { |
| 1610 | - return $this->kind; |
|
| 1610 | + return $this->kind; |
|
| 1611 | 1611 | } |
| 1612 | 1612 | public function setMobileContentAdsSettings(Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings $mobileContentAdsSettings) |
| 1613 | 1613 | { |
| 1614 | - $this->mobileContentAdsSettings = $mobileContentAdsSettings; |
|
| 1614 | + $this->mobileContentAdsSettings = $mobileContentAdsSettings; |
|
| 1615 | 1615 | } |
| 1616 | 1616 | public function getMobileContentAdsSettings() |
| 1617 | 1617 | { |
| 1618 | - return $this->mobileContentAdsSettings; |
|
| 1618 | + return $this->mobileContentAdsSettings; |
|
| 1619 | 1619 | } |
| 1620 | 1620 | public function setName($name) |
| 1621 | 1621 | { |
| 1622 | - $this->name = $name; |
|
| 1622 | + $this->name = $name; |
|
| 1623 | 1623 | } |
| 1624 | 1624 | public function getName() |
| 1625 | 1625 | { |
| 1626 | - return $this->name; |
|
| 1626 | + return $this->name; |
|
| 1627 | 1627 | } |
| 1628 | 1628 | public function setStatus($status) |
| 1629 | 1629 | { |
| 1630 | - $this->status = $status; |
|
| 1630 | + $this->status = $status; |
|
| 1631 | 1631 | } |
| 1632 | 1632 | public function getStatus() |
| 1633 | 1633 | { |
| 1634 | - return $this->status; |
|
| 1634 | + return $this->status; |
|
| 1635 | 1635 | } |
| 1636 | 1636 | } |
| 1637 | 1637 | |
@@ -1647,27 +1647,27 @@ discard block |
||
| 1647 | 1647 | |
| 1648 | 1648 | public function setBackupOption(Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption $backupOption) |
| 1649 | 1649 | { |
| 1650 | - $this->backupOption = $backupOption; |
|
| 1650 | + $this->backupOption = $backupOption; |
|
| 1651 | 1651 | } |
| 1652 | 1652 | public function getBackupOption() |
| 1653 | 1653 | { |
| 1654 | - return $this->backupOption; |
|
| 1654 | + return $this->backupOption; |
|
| 1655 | 1655 | } |
| 1656 | 1656 | public function setSize($size) |
| 1657 | 1657 | { |
| 1658 | - $this->size = $size; |
|
| 1658 | + $this->size = $size; |
|
| 1659 | 1659 | } |
| 1660 | 1660 | public function getSize() |
| 1661 | 1661 | { |
| 1662 | - return $this->size; |
|
| 1662 | + return $this->size; |
|
| 1663 | 1663 | } |
| 1664 | 1664 | public function setType($type) |
| 1665 | 1665 | { |
| 1666 | - $this->type = $type; |
|
| 1666 | + $this->type = $type; |
|
| 1667 | 1667 | } |
| 1668 | 1668 | public function getType() |
| 1669 | 1669 | { |
| 1670 | - return $this->type; |
|
| 1670 | + return $this->type; |
|
| 1671 | 1671 | } |
| 1672 | 1672 | } |
| 1673 | 1673 | |
@@ -1682,27 +1682,27 @@ discard block |
||
| 1682 | 1682 | |
| 1683 | 1683 | public function setColor($color) |
| 1684 | 1684 | { |
| 1685 | - $this->color = $color; |
|
| 1685 | + $this->color = $color; |
|
| 1686 | 1686 | } |
| 1687 | 1687 | public function getColor() |
| 1688 | 1688 | { |
| 1689 | - return $this->color; |
|
| 1689 | + return $this->color; |
|
| 1690 | 1690 | } |
| 1691 | 1691 | public function setType($type) |
| 1692 | 1692 | { |
| 1693 | - $this->type = $type; |
|
| 1693 | + $this->type = $type; |
|
| 1694 | 1694 | } |
| 1695 | 1695 | public function getType() |
| 1696 | 1696 | { |
| 1697 | - return $this->type; |
|
| 1697 | + return $this->type; |
|
| 1698 | 1698 | } |
| 1699 | 1699 | public function setUrl($url) |
| 1700 | 1700 | { |
| 1701 | - $this->url = $url; |
|
| 1701 | + $this->url = $url; |
|
| 1702 | 1702 | } |
| 1703 | 1703 | public function getUrl() |
| 1704 | 1704 | { |
| 1705 | - return $this->url; |
|
| 1705 | + return $this->url; |
|
| 1706 | 1706 | } |
| 1707 | 1707 | } |
| 1708 | 1708 | |
@@ -1718,35 +1718,35 @@ discard block |
||
| 1718 | 1718 | |
| 1719 | 1719 | public function setMarkupLanguage($markupLanguage) |
| 1720 | 1720 | { |
| 1721 | - $this->markupLanguage = $markupLanguage; |
|
| 1721 | + $this->markupLanguage = $markupLanguage; |
|
| 1722 | 1722 | } |
| 1723 | 1723 | public function getMarkupLanguage() |
| 1724 | 1724 | { |
| 1725 | - return $this->markupLanguage; |
|
| 1725 | + return $this->markupLanguage; |
|
| 1726 | 1726 | } |
| 1727 | 1727 | public function setScriptingLanguage($scriptingLanguage) |
| 1728 | 1728 | { |
| 1729 | - $this->scriptingLanguage = $scriptingLanguage; |
|
| 1729 | + $this->scriptingLanguage = $scriptingLanguage; |
|
| 1730 | 1730 | } |
| 1731 | 1731 | public function getScriptingLanguage() |
| 1732 | 1732 | { |
| 1733 | - return $this->scriptingLanguage; |
|
| 1733 | + return $this->scriptingLanguage; |
|
| 1734 | 1734 | } |
| 1735 | 1735 | public function setSize($size) |
| 1736 | 1736 | { |
| 1737 | - $this->size = $size; |
|
| 1737 | + $this->size = $size; |
|
| 1738 | 1738 | } |
| 1739 | 1739 | public function getSize() |
| 1740 | 1740 | { |
| 1741 | - return $this->size; |
|
| 1741 | + return $this->size; |
|
| 1742 | 1742 | } |
| 1743 | 1743 | public function setType($type) |
| 1744 | 1744 | { |
| 1745 | - $this->type = $type; |
|
| 1745 | + $this->type = $type; |
|
| 1746 | 1746 | } |
| 1747 | 1747 | public function getType() |
| 1748 | 1748 | { |
| 1749 | - return $this->type; |
|
| 1749 | + return $this->type; |
|
| 1750 | 1750 | } |
| 1751 | 1751 | } |
| 1752 | 1752 | |
@@ -1764,35 +1764,35 @@ discard block |
||
| 1764 | 1764 | |
| 1765 | 1765 | public function setEtag($etag) |
| 1766 | 1766 | { |
| 1767 | - $this->etag = $etag; |
|
| 1767 | + $this->etag = $etag; |
|
| 1768 | 1768 | } |
| 1769 | 1769 | public function getEtag() |
| 1770 | 1770 | { |
| 1771 | - return $this->etag; |
|
| 1771 | + return $this->etag; |
|
| 1772 | 1772 | } |
| 1773 | 1773 | public function setItems($items) |
| 1774 | 1774 | { |
| 1775 | - $this->items = $items; |
|
| 1775 | + $this->items = $items; |
|
| 1776 | 1776 | } |
| 1777 | 1777 | public function getItems() |
| 1778 | 1778 | { |
| 1779 | - return $this->items; |
|
| 1779 | + return $this->items; |
|
| 1780 | 1780 | } |
| 1781 | 1781 | public function setKind($kind) |
| 1782 | 1782 | { |
| 1783 | - $this->kind = $kind; |
|
| 1783 | + $this->kind = $kind; |
|
| 1784 | 1784 | } |
| 1785 | 1785 | public function getKind() |
| 1786 | 1786 | { |
| 1787 | - return $this->kind; |
|
| 1787 | + return $this->kind; |
|
| 1788 | 1788 | } |
| 1789 | 1789 | public function setNextPageToken($nextPageToken) |
| 1790 | 1790 | { |
| 1791 | - $this->nextPageToken = $nextPageToken; |
|
| 1791 | + $this->nextPageToken = $nextPageToken; |
|
| 1792 | 1792 | } |
| 1793 | 1793 | public function getNextPageToken() |
| 1794 | 1794 | { |
| 1795 | - return $this->nextPageToken; |
|
| 1795 | + return $this->nextPageToken; |
|
| 1796 | 1796 | } |
| 1797 | 1797 | } |
| 1798 | 1798 | |
@@ -1814,75 +1814,75 @@ discard block |
||
| 1814 | 1814 | |
| 1815 | 1815 | public function setAccountId($accountId) |
| 1816 | 1816 | { |
| 1817 | - $this->accountId = $accountId; |
|
| 1817 | + $this->accountId = $accountId; |
|
| 1818 | 1818 | } |
| 1819 | 1819 | public function getAccountId() |
| 1820 | 1820 | { |
| 1821 | - return $this->accountId; |
|
| 1821 | + return $this->accountId; |
|
| 1822 | 1822 | } |
| 1823 | 1823 | public function setId($id) |
| 1824 | 1824 | { |
| 1825 | - $this->id = $id; |
|
| 1825 | + $this->id = $id; |
|
| 1826 | 1826 | } |
| 1827 | 1827 | public function getId() |
| 1828 | 1828 | { |
| 1829 | - return $this->id; |
|
| 1829 | + return $this->id; |
|
| 1830 | 1830 | } |
| 1831 | 1831 | public function setKind($kind) |
| 1832 | 1832 | { |
| 1833 | - $this->kind = $kind; |
|
| 1833 | + $this->kind = $kind; |
|
| 1834 | 1834 | } |
| 1835 | 1835 | public function getKind() |
| 1836 | 1836 | { |
| 1837 | - return $this->kind; |
|
| 1837 | + return $this->kind; |
|
| 1838 | 1838 | } |
| 1839 | 1839 | public function setProductCodes($productCodes) |
| 1840 | 1840 | { |
| 1841 | - $this->productCodes = $productCodes; |
|
| 1841 | + $this->productCodes = $productCodes; |
|
| 1842 | 1842 | } |
| 1843 | 1843 | public function getProductCodes() |
| 1844 | 1844 | { |
| 1845 | - return $this->productCodes; |
|
| 1845 | + return $this->productCodes; |
|
| 1846 | 1846 | } |
| 1847 | 1847 | public function setRedirectUrl($redirectUrl) |
| 1848 | 1848 | { |
| 1849 | - $this->redirectUrl = $redirectUrl; |
|
| 1849 | + $this->redirectUrl = $redirectUrl; |
|
| 1850 | 1850 | } |
| 1851 | 1851 | public function getRedirectUrl() |
| 1852 | 1852 | { |
| 1853 | - return $this->redirectUrl; |
|
| 1853 | + return $this->redirectUrl; |
|
| 1854 | 1854 | } |
| 1855 | 1855 | public function setStatus($status) |
| 1856 | 1856 | { |
| 1857 | - $this->status = $status; |
|
| 1857 | + $this->status = $status; |
|
| 1858 | 1858 | } |
| 1859 | 1859 | public function getStatus() |
| 1860 | 1860 | { |
| 1861 | - return $this->status; |
|
| 1861 | + return $this->status; |
|
| 1862 | 1862 | } |
| 1863 | 1863 | public function setUserLocale($userLocale) |
| 1864 | 1864 | { |
| 1865 | - $this->userLocale = $userLocale; |
|
| 1865 | + $this->userLocale = $userLocale; |
|
| 1866 | 1866 | } |
| 1867 | 1867 | public function getUserLocale() |
| 1868 | 1868 | { |
| 1869 | - return $this->userLocale; |
|
| 1869 | + return $this->userLocale; |
|
| 1870 | 1870 | } |
| 1871 | 1871 | public function setWebsiteLocale($websiteLocale) |
| 1872 | 1872 | { |
| 1873 | - $this->websiteLocale = $websiteLocale; |
|
| 1873 | + $this->websiteLocale = $websiteLocale; |
|
| 1874 | 1874 | } |
| 1875 | 1875 | public function getWebsiteLocale() |
| 1876 | 1876 | { |
| 1877 | - return $this->websiteLocale; |
|
| 1877 | + return $this->websiteLocale; |
|
| 1878 | 1878 | } |
| 1879 | 1879 | public function setWebsiteUrl($websiteUrl) |
| 1880 | 1880 | { |
| 1881 | - $this->websiteUrl = $websiteUrl; |
|
| 1881 | + $this->websiteUrl = $websiteUrl; |
|
| 1882 | 1882 | } |
| 1883 | 1883 | public function getWebsiteUrl() |
| 1884 | 1884 | { |
| 1885 | - return $this->websiteUrl; |
|
| 1885 | + return $this->websiteUrl; |
|
| 1886 | 1886 | } |
| 1887 | 1887 | } |
| 1888 | 1888 | |
@@ -1898,35 +1898,35 @@ discard block |
||
| 1898 | 1898 | |
| 1899 | 1899 | public function setCode($code) |
| 1900 | 1900 | { |
| 1901 | - $this->code = $code; |
|
| 1901 | + $this->code = $code; |
|
| 1902 | 1902 | } |
| 1903 | 1903 | public function getCode() |
| 1904 | 1904 | { |
| 1905 | - return $this->code; |
|
| 1905 | + return $this->code; |
|
| 1906 | 1906 | } |
| 1907 | 1907 | public function setId($id) |
| 1908 | 1908 | { |
| 1909 | - $this->id = $id; |
|
| 1909 | + $this->id = $id; |
|
| 1910 | 1910 | } |
| 1911 | 1911 | public function getId() |
| 1912 | 1912 | { |
| 1913 | - return $this->id; |
|
| 1913 | + return $this->id; |
|
| 1914 | 1914 | } |
| 1915 | 1915 | public function setKind($kind) |
| 1916 | 1916 | { |
| 1917 | - $this->kind = $kind; |
|
| 1917 | + $this->kind = $kind; |
|
| 1918 | 1918 | } |
| 1919 | 1919 | public function getKind() |
| 1920 | 1920 | { |
| 1921 | - return $this->kind; |
|
| 1921 | + return $this->kind; |
|
| 1922 | 1922 | } |
| 1923 | 1923 | public function setName($name) |
| 1924 | 1924 | { |
| 1925 | - $this->name = $name; |
|
| 1925 | + $this->name = $name; |
|
| 1926 | 1926 | } |
| 1927 | 1927 | public function getName() |
| 1928 | 1928 | { |
| 1929 | - return $this->name; |
|
| 1929 | + return $this->name; |
|
| 1930 | 1930 | } |
| 1931 | 1931 | } |
| 1932 | 1932 | |
@@ -1944,35 +1944,35 @@ discard block |
||
| 1944 | 1944 | |
| 1945 | 1945 | public function setEtag($etag) |
| 1946 | 1946 | { |
| 1947 | - $this->etag = $etag; |
|
| 1947 | + $this->etag = $etag; |
|
| 1948 | 1948 | } |
| 1949 | 1949 | public function getEtag() |
| 1950 | 1950 | { |
| 1951 | - return $this->etag; |
|
| 1951 | + return $this->etag; |
|
| 1952 | 1952 | } |
| 1953 | 1953 | public function setItems($items) |
| 1954 | 1954 | { |
| 1955 | - $this->items = $items; |
|
| 1955 | + $this->items = $items; |
|
| 1956 | 1956 | } |
| 1957 | 1957 | public function getItems() |
| 1958 | 1958 | { |
| 1959 | - return $this->items; |
|
| 1959 | + return $this->items; |
|
| 1960 | 1960 | } |
| 1961 | 1961 | public function setKind($kind) |
| 1962 | 1962 | { |
| 1963 | - $this->kind = $kind; |
|
| 1963 | + $this->kind = $kind; |
|
| 1964 | 1964 | } |
| 1965 | 1965 | public function getKind() |
| 1966 | 1966 | { |
| 1967 | - return $this->kind; |
|
| 1967 | + return $this->kind; |
|
| 1968 | 1968 | } |
| 1969 | 1969 | public function setNextPageToken($nextPageToken) |
| 1970 | 1970 | { |
| 1971 | - $this->nextPageToken = $nextPageToken; |
|
| 1971 | + $this->nextPageToken = $nextPageToken; |
|
| 1972 | 1972 | } |
| 1973 | 1973 | public function getNextPageToken() |
| 1974 | 1974 | { |
| 1975 | - return $this->nextPageToken; |
|
| 1975 | + return $this->nextPageToken; |
|
| 1976 | 1976 | } |
| 1977 | 1977 | } |
| 1978 | 1978 | |
@@ -1993,59 +1993,59 @@ discard block |
||
| 1993 | 1993 | |
| 1994 | 1994 | public function setAverages($averages) |
| 1995 | 1995 | { |
| 1996 | - $this->averages = $averages; |
|
| 1996 | + $this->averages = $averages; |
|
| 1997 | 1997 | } |
| 1998 | 1998 | public function getAverages() |
| 1999 | 1999 | { |
| 2000 | - return $this->averages; |
|
| 2000 | + return $this->averages; |
|
| 2001 | 2001 | } |
| 2002 | 2002 | public function setHeaders($headers) |
| 2003 | 2003 | { |
| 2004 | - $this->headers = $headers; |
|
| 2004 | + $this->headers = $headers; |
|
| 2005 | 2005 | } |
| 2006 | 2006 | public function getHeaders() |
| 2007 | 2007 | { |
| 2008 | - return $this->headers; |
|
| 2008 | + return $this->headers; |
|
| 2009 | 2009 | } |
| 2010 | 2010 | public function setKind($kind) |
| 2011 | 2011 | { |
| 2012 | - $this->kind = $kind; |
|
| 2012 | + $this->kind = $kind; |
|
| 2013 | 2013 | } |
| 2014 | 2014 | public function getKind() |
| 2015 | 2015 | { |
| 2016 | - return $this->kind; |
|
| 2016 | + return $this->kind; |
|
| 2017 | 2017 | } |
| 2018 | 2018 | public function setRows($rows) |
| 2019 | 2019 | { |
| 2020 | - $this->rows = $rows; |
|
| 2020 | + $this->rows = $rows; |
|
| 2021 | 2021 | } |
| 2022 | 2022 | public function getRows() |
| 2023 | 2023 | { |
| 2024 | - return $this->rows; |
|
| 2024 | + return $this->rows; |
|
| 2025 | 2025 | } |
| 2026 | 2026 | public function setTotalMatchedRows($totalMatchedRows) |
| 2027 | 2027 | { |
| 2028 | - $this->totalMatchedRows = $totalMatchedRows; |
|
| 2028 | + $this->totalMatchedRows = $totalMatchedRows; |
|
| 2029 | 2029 | } |
| 2030 | 2030 | public function getTotalMatchedRows() |
| 2031 | 2031 | { |
| 2032 | - return $this->totalMatchedRows; |
|
| 2032 | + return $this->totalMatchedRows; |
|
| 2033 | 2033 | } |
| 2034 | 2034 | public function setTotals($totals) |
| 2035 | 2035 | { |
| 2036 | - $this->totals = $totals; |
|
| 2036 | + $this->totals = $totals; |
|
| 2037 | 2037 | } |
| 2038 | 2038 | public function getTotals() |
| 2039 | 2039 | { |
| 2040 | - return $this->totals; |
|
| 2040 | + return $this->totals; |
|
| 2041 | 2041 | } |
| 2042 | 2042 | public function setWarnings($warnings) |
| 2043 | 2043 | { |
| 2044 | - $this->warnings = $warnings; |
|
| 2044 | + $this->warnings = $warnings; |
|
| 2045 | 2045 | } |
| 2046 | 2046 | public function getWarnings() |
| 2047 | 2047 | { |
| 2048 | - return $this->warnings; |
|
| 2048 | + return $this->warnings; |
|
| 2049 | 2049 | } |
| 2050 | 2050 | } |
| 2051 | 2051 | |
@@ -2060,27 +2060,27 @@ discard block |
||
| 2060 | 2060 | |
| 2061 | 2061 | public function setCurrency($currency) |
| 2062 | 2062 | { |
| 2063 | - $this->currency = $currency; |
|
| 2063 | + $this->currency = $currency; |
|
| 2064 | 2064 | } |
| 2065 | 2065 | public function getCurrency() |
| 2066 | 2066 | { |
| 2067 | - return $this->currency; |
|
| 2067 | + return $this->currency; |
|
| 2068 | 2068 | } |
| 2069 | 2069 | public function setName($name) |
| 2070 | 2070 | { |
| 2071 | - $this->name = $name; |
|
| 2071 | + $this->name = $name; |
|
| 2072 | 2072 | } |
| 2073 | 2073 | public function getName() |
| 2074 | 2074 | { |
| 2075 | - return $this->name; |
|
| 2075 | + return $this->name; |
|
| 2076 | 2076 | } |
| 2077 | 2077 | public function setType($type) |
| 2078 | 2078 | { |
| 2079 | - $this->type = $type; |
|
| 2079 | + $this->type = $type; |
|
| 2080 | 2080 | } |
| 2081 | 2081 | public function getType() |
| 2082 | 2082 | { |
| 2083 | - return $this->type; |
|
| 2083 | + return $this->type; |
|
| 2084 | 2084 | } |
| 2085 | 2085 | } |
| 2086 | 2086 | |
@@ -2095,27 +2095,27 @@ discard block |
||
| 2095 | 2095 | |
| 2096 | 2096 | public function setId($id) |
| 2097 | 2097 | { |
| 2098 | - $this->id = $id; |
|
| 2098 | + $this->id = $id; |
|
| 2099 | 2099 | } |
| 2100 | 2100 | public function getId() |
| 2101 | 2101 | { |
| 2102 | - return $this->id; |
|
| 2102 | + return $this->id; |
|
| 2103 | 2103 | } |
| 2104 | 2104 | public function setKind($kind) |
| 2105 | 2105 | { |
| 2106 | - $this->kind = $kind; |
|
| 2106 | + $this->kind = $kind; |
|
| 2107 | 2107 | } |
| 2108 | 2108 | public function getKind() |
| 2109 | 2109 | { |
| 2110 | - return $this->kind; |
|
| 2110 | + return $this->kind; |
|
| 2111 | 2111 | } |
| 2112 | 2112 | public function setUrlPattern($urlPattern) |
| 2113 | 2113 | { |
| 2114 | - $this->urlPattern = $urlPattern; |
|
| 2114 | + $this->urlPattern = $urlPattern; |
|
| 2115 | 2115 | } |
| 2116 | 2116 | public function getUrlPattern() |
| 2117 | 2117 | { |
| 2118 | - return $this->urlPattern; |
|
| 2118 | + return $this->urlPattern; |
|
| 2119 | 2119 | } |
| 2120 | 2120 | } |
| 2121 | 2121 | |
@@ -2133,34 +2133,34 @@ discard block |
||
| 2133 | 2133 | |
| 2134 | 2134 | public function setEtag($etag) |
| 2135 | 2135 | { |
| 2136 | - $this->etag = $etag; |
|
| 2136 | + $this->etag = $etag; |
|
| 2137 | 2137 | } |
| 2138 | 2138 | public function getEtag() |
| 2139 | 2139 | { |
| 2140 | - return $this->etag; |
|
| 2140 | + return $this->etag; |
|
| 2141 | 2141 | } |
| 2142 | 2142 | public function setItems($items) |
| 2143 | 2143 | { |
| 2144 | - $this->items = $items; |
|
| 2144 | + $this->items = $items; |
|
| 2145 | 2145 | } |
| 2146 | 2146 | public function getItems() |
| 2147 | 2147 | { |
| 2148 | - return $this->items; |
|
| 2148 | + return $this->items; |
|
| 2149 | 2149 | } |
| 2150 | 2150 | public function setKind($kind) |
| 2151 | 2151 | { |
| 2152 | - $this->kind = $kind; |
|
| 2152 | + $this->kind = $kind; |
|
| 2153 | 2153 | } |
| 2154 | 2154 | public function getKind() |
| 2155 | 2155 | { |
| 2156 | - return $this->kind; |
|
| 2156 | + return $this->kind; |
|
| 2157 | 2157 | } |
| 2158 | 2158 | public function setNextPageToken($nextPageToken) |
| 2159 | 2159 | { |
| 2160 | - $this->nextPageToken = $nextPageToken; |
|
| 2160 | + $this->nextPageToken = $nextPageToken; |
|
| 2161 | 2161 | } |
| 2162 | 2162 | public function getNextPageToken() |
| 2163 | 2163 | { |
| 2164 | - return $this->nextPageToken; |
|
| 2164 | + return $this->nextPageToken; |
|
| 2165 | 2165 | } |
| 2166 | 2166 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | 'required' => true, |
| 76 | 76 | ), |
| 77 | 77 | ), |
| 78 | - ),'list' => array( |
|
| 78 | + ), 'list' => array( |
|
| 79 | 79 | 'path' => 'accounts', |
| 80 | 80 | 'httpMethod' => 'GET', |
| 81 | 81 | 'parameters' => array( |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | 'required' => true, |
| 112 | 112 | ), |
| 113 | 113 | ), |
| 114 | - ),'list' => array( |
|
| 114 | + ), 'list' => array( |
|
| 115 | 115 | 'path' => 'accounts/{accountId}/adclients', |
| 116 | 116 | 'httpMethod' => 'GET', |
| 117 | 117 | 'parameters' => array( |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | 'required' => true, |
| 160 | 160 | ), |
| 161 | 161 | ), |
| 162 | - ),'get' => array( |
|
| 162 | + ), 'get' => array( |
|
| 163 | 163 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}', |
| 164 | 164 | 'httpMethod' => 'GET', |
| 165 | 165 | 'parameters' => array( |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | 'required' => true, |
| 180 | 180 | ), |
| 181 | 181 | ), |
| 182 | - ),'getAdCode' => array( |
|
| 182 | + ), 'getAdCode' => array( |
|
| 183 | 183 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode', |
| 184 | 184 | 'httpMethod' => 'GET', |
| 185 | 185 | 'parameters' => array( |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | 'repeated' => true, |
| 205 | 205 | ), |
| 206 | 206 | ), |
| 207 | - ),'insert' => array( |
|
| 207 | + ), 'insert' => array( |
|
| 208 | 208 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
| 209 | 209 | 'httpMethod' => 'POST', |
| 210 | 210 | 'parameters' => array( |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | 'required' => true, |
| 220 | 220 | ), |
| 221 | 221 | ), |
| 222 | - ),'list' => array( |
|
| 222 | + ), 'list' => array( |
|
| 223 | 223 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
| 224 | 224 | 'httpMethod' => 'GET', |
| 225 | 225 | 'parameters' => array( |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | 'type' => 'integer', |
| 247 | 247 | ), |
| 248 | 248 | ), |
| 249 | - ),'patch' => array( |
|
| 249 | + ), 'patch' => array( |
|
| 250 | 250 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
| 251 | 251 | 'httpMethod' => 'PATCH', |
| 252 | 252 | 'parameters' => array( |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | 'required' => true, |
| 267 | 267 | ), |
| 268 | 268 | ), |
| 269 | - ),'update' => array( |
|
| 269 | + ), 'update' => array( |
|
| 270 | 270 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits', |
| 271 | 271 | 'httpMethod' => 'PUT', |
| 272 | 272 | 'parameters' => array( |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | 'required' => true, |
| 364 | 364 | ), |
| 365 | 365 | ), |
| 366 | - ),'list' => array( |
|
| 366 | + ), 'list' => array( |
|
| 367 | 367 | 'path' => 'adclients', |
| 368 | 368 | 'httpMethod' => 'GET', |
| 369 | 369 | 'parameters' => array( |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | 'type' => 'string', |
| 411 | 411 | ), |
| 412 | 412 | ), |
| 413 | - ),'verify' => array( |
|
| 413 | + ), 'verify' => array( |
|
| 414 | 414 | 'path' => 'associationsessions/verify', |
| 415 | 415 | 'httpMethod' => 'GET', |
| 416 | 416 | 'parameters' => array( |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | 'required' => true, |
| 446 | 446 | ), |
| 447 | 447 | ), |
| 448 | - ),'get' => array( |
|
| 448 | + ), 'get' => array( |
|
| 449 | 449 | 'path' => 'adclients/{adClientId}/customchannels/{customChannelId}', |
| 450 | 450 | 'httpMethod' => 'GET', |
| 451 | 451 | 'parameters' => array( |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | 'required' => true, |
| 461 | 461 | ), |
| 462 | 462 | ), |
| 463 | - ),'insert' => array( |
|
| 463 | + ), 'insert' => array( |
|
| 464 | 464 | 'path' => 'adclients/{adClientId}/customchannels', |
| 465 | 465 | 'httpMethod' => 'POST', |
| 466 | 466 | 'parameters' => array( |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | 'required' => true, |
| 471 | 471 | ), |
| 472 | 472 | ), |
| 473 | - ),'list' => array( |
|
| 473 | + ), 'list' => array( |
|
| 474 | 474 | 'path' => 'adclients/{adClientId}/customchannels', |
| 475 | 475 | 'httpMethod' => 'GET', |
| 476 | 476 | 'parameters' => array( |
@@ -488,7 +488,7 @@ discard block |
||
| 488 | 488 | 'type' => 'integer', |
| 489 | 489 | ), |
| 490 | 490 | ), |
| 491 | - ),'patch' => array( |
|
| 491 | + ), 'patch' => array( |
|
| 492 | 492 | 'path' => 'adclients/{adClientId}/customchannels', |
| 493 | 493 | 'httpMethod' => 'PATCH', |
| 494 | 494 | 'parameters' => array( |
@@ -503,7 +503,7 @@ discard block |
||
| 503 | 503 | 'required' => true, |
| 504 | 504 | ), |
| 505 | 505 | ), |
| 506 | - ),'update' => array( |
|
| 506 | + ), 'update' => array( |
|
| 507 | 507 | 'path' => 'adclients/{adClientId}/customchannels', |
| 508 | 508 | 'httpMethod' => 'PUT', |
| 509 | 509 | 'parameters' => array( |
@@ -595,7 +595,7 @@ discard block |
||
| 595 | 595 | 'required' => true, |
| 596 | 596 | ), |
| 597 | 597 | ), |
| 598 | - ),'insert' => array( |
|
| 598 | + ), 'insert' => array( |
|
| 599 | 599 | 'path' => 'adclients/{adClientId}/urlchannels', |
| 600 | 600 | 'httpMethod' => 'POST', |
| 601 | 601 | 'parameters' => array( |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | 'required' => true, |
| 606 | 606 | ), |
| 607 | 607 | ), |
| 608 | - ),'list' => array( |
|
| 608 | + ), 'list' => array( |
|
| 609 | 609 | 'path' => 'adclients/{adClientId}/urlchannels', |
| 610 | 610 | 'httpMethod' => 'GET', |
| 611 | 611 | 'parameters' => array( |
@@ -2180,7 +2180,7 @@ discard block |
||
| 2180 | 2180 | * Adds a new user to the given account. (accountUserLinks.insert) |
| 2181 | 2181 | * |
| 2182 | 2182 | * @param string $accountId Account ID to create the user link for. |
| 2183 | - * @param Google_EntityUserLink $postBody |
|
| 2183 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 2184 | 2184 | * @param array $optParams Optional parameters. |
| 2185 | 2185 | * @return Google_Service_Analytics_EntityUserLink |
| 2186 | 2186 | */ |
@@ -2218,7 +2218,7 @@ discard block |
||
| 2218 | 2218 | * |
| 2219 | 2219 | * @param string $accountId Account ID to update the account-user link for. |
| 2220 | 2220 | * @param string $linkId Link ID to update the account-user link for. |
| 2221 | - * @param Google_EntityUserLink $postBody |
|
| 2221 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 2222 | 2222 | * @param array $optParams Optional parameters. |
| 2223 | 2223 | * @return Google_Service_Analytics_EntityUserLink |
| 2224 | 2224 | */ |
@@ -2328,7 +2328,7 @@ discard block |
||
| 2328 | 2328 | * @param string $accountId Account ID for the custom dimension to create. |
| 2329 | 2329 | * @param string $webPropertyId Web property ID for the custom dimension to |
| 2330 | 2330 | * create. |
| 2331 | - * @param Google_CustomDimension $postBody |
|
| 2331 | + * @param Google_Service_Analytics_CustomDimension $postBody |
|
| 2332 | 2332 | * @param array $optParams Optional parameters. |
| 2333 | 2333 | * @return Google_Service_Analytics_CustomDimension |
| 2334 | 2334 | */ |
@@ -2370,7 +2370,7 @@ discard block |
||
| 2370 | 2370 | * update. |
| 2371 | 2371 | * @param string $customDimensionId Custom dimension ID for the custom dimension |
| 2372 | 2372 | * to update. |
| 2373 | - * @param Google_CustomDimension $postBody |
|
| 2373 | + * @param Google_Service_Analytics_CustomDimension $postBody |
|
| 2374 | 2374 | * @param array $optParams Optional parameters. |
| 2375 | 2375 | * |
| 2376 | 2376 | * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any |
@@ -2393,7 +2393,7 @@ discard block |
||
| 2393 | 2393 | * update. |
| 2394 | 2394 | * @param string $customDimensionId Custom dimension ID for the custom dimension |
| 2395 | 2395 | * to update. |
| 2396 | - * @param Google_CustomDimension $postBody |
|
| 2396 | + * @param Google_Service_Analytics_CustomDimension $postBody |
|
| 2397 | 2397 | * @param array $optParams Optional parameters. |
| 2398 | 2398 | * |
| 2399 | 2399 | * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any |
@@ -2442,7 +2442,7 @@ discard block |
||
| 2442 | 2442 | * @param string $accountId Account ID for the custom metric to create. |
| 2443 | 2443 | * @param string $webPropertyId Web property ID for the custom dimension to |
| 2444 | 2444 | * create. |
| 2445 | - * @param Google_CustomMetric $postBody |
|
| 2445 | + * @param Google_Service_Analytics_CustomMetric $postBody |
|
| 2446 | 2446 | * @param array $optParams Optional parameters. |
| 2447 | 2447 | * @return Google_Service_Analytics_CustomMetric |
| 2448 | 2448 | */ |
@@ -2483,7 +2483,7 @@ discard block |
||
| 2483 | 2483 | * @param string $webPropertyId Web property ID for the custom metric to update. |
| 2484 | 2484 | * @param string $customMetricId Custom metric ID for the custom metric to |
| 2485 | 2485 | * update. |
| 2486 | - * @param Google_CustomMetric $postBody |
|
| 2486 | + * @param Google_Service_Analytics_CustomMetric $postBody |
|
| 2487 | 2487 | * @param array $optParams Optional parameters. |
| 2488 | 2488 | * |
| 2489 | 2489 | * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any |
@@ -2505,7 +2505,7 @@ discard block |
||
| 2505 | 2505 | * @param string $webPropertyId Web property ID for the custom metric to update. |
| 2506 | 2506 | * @param string $customMetricId Custom metric ID for the custom metric to |
| 2507 | 2507 | * update. |
| 2508 | - * @param Google_CustomMetric $postBody |
|
| 2508 | + * @param Google_Service_Analytics_CustomMetric $postBody |
|
| 2509 | 2509 | * @param array $optParams Optional parameters. |
| 2510 | 2510 | * |
| 2511 | 2511 | * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any |
@@ -2570,7 +2570,7 @@ discard block |
||
| 2570 | 2570 | * @param string $accountId Account ID to create the experiment for. |
| 2571 | 2571 | * @param string $webPropertyId Web property ID to create the experiment for. |
| 2572 | 2572 | * @param string $profileId View (Profile) ID to create the experiment for. |
| 2573 | - * @param Google_Experiment $postBody |
|
| 2573 | + * @param Google_Service_Analytics_Experiment $postBody |
|
| 2574 | 2574 | * @param array $optParams Optional parameters. |
| 2575 | 2575 | * @return Google_Service_Analytics_Experiment |
| 2576 | 2576 | */ |
@@ -2612,7 +2612,7 @@ discard block |
||
| 2612 | 2612 | * @param string $webPropertyId Web property ID of the experiment to update. |
| 2613 | 2613 | * @param string $profileId View (Profile) ID of the experiment to update. |
| 2614 | 2614 | * @param string $experimentId Experiment ID of the experiment to update. |
| 2615 | - * @param Google_Experiment $postBody |
|
| 2615 | + * @param Google_Service_Analytics_Experiment $postBody |
|
| 2616 | 2616 | * @param array $optParams Optional parameters. |
| 2617 | 2617 | * @return Google_Service_Analytics_Experiment |
| 2618 | 2618 | */ |
@@ -2630,7 +2630,7 @@ discard block |
||
| 2630 | 2630 | * @param string $webPropertyId Web property ID of the experiment to update. |
| 2631 | 2631 | * @param string $profileId View (Profile) ID of the experiment to update. |
| 2632 | 2632 | * @param string $experimentId Experiment ID of the experiment to update. |
| 2633 | - * @param Google_Experiment $postBody |
|
| 2633 | + * @param Google_Service_Analytics_Experiment $postBody |
|
| 2634 | 2634 | * @param array $optParams Optional parameters. |
| 2635 | 2635 | * @return Google_Service_Analytics_Experiment |
| 2636 | 2636 | */ |
@@ -2686,7 +2686,7 @@ discard block |
||
| 2686 | 2686 | * Create a new filter. (filters.insert) |
| 2687 | 2687 | * |
| 2688 | 2688 | * @param string $accountId Account ID to create filter for. |
| 2689 | - * @param Google_Filter $postBody |
|
| 2689 | + * @param Google_Service_Analytics_Filter $postBody |
|
| 2690 | 2690 | * @param array $optParams Optional parameters. |
| 2691 | 2691 | * @return Google_Service_Analytics_Filter |
| 2692 | 2692 | */ |
@@ -2722,7 +2722,7 @@ discard block |
||
| 2722 | 2722 | * |
| 2723 | 2723 | * @param string $accountId Account ID to which the filter belongs. |
| 2724 | 2724 | * @param string $filterId ID of the filter to be updated. |
| 2725 | - * @param Google_Filter $postBody |
|
| 2725 | + * @param Google_Service_Analytics_Filter $postBody |
|
| 2726 | 2726 | * @param array $optParams Optional parameters. |
| 2727 | 2727 | * @return Google_Service_Analytics_Filter |
| 2728 | 2728 | */ |
@@ -2738,7 +2738,7 @@ discard block |
||
| 2738 | 2738 | * |
| 2739 | 2739 | * @param string $accountId Account ID to which the filter belongs. |
| 2740 | 2740 | * @param string $filterId ID of the filter to be updated. |
| 2741 | - * @param Google_Filter $postBody |
|
| 2741 | + * @param Google_Service_Analytics_Filter $postBody |
|
| 2742 | 2742 | * @param array $optParams Optional parameters. |
| 2743 | 2743 | * @return Google_Service_Analytics_Filter |
| 2744 | 2744 | */ |
@@ -2783,7 +2783,7 @@ discard block |
||
| 2783 | 2783 | * @param string $accountId Account ID to create the goal for. |
| 2784 | 2784 | * @param string $webPropertyId Web property ID to create the goal for. |
| 2785 | 2785 | * @param string $profileId View (Profile) ID to create the goal for. |
| 2786 | - * @param Google_Goal $postBody |
|
| 2786 | + * @param Google_Service_Analytics_Goal $postBody |
|
| 2787 | 2787 | * @param array $optParams Optional parameters. |
| 2788 | 2788 | * @return Google_Service_Analytics_Goal |
| 2789 | 2789 | */ |
@@ -2829,7 +2829,7 @@ discard block |
||
| 2829 | 2829 | * @param string $webPropertyId Web property ID to update the goal. |
| 2830 | 2830 | * @param string $profileId View (Profile) ID to update the goal. |
| 2831 | 2831 | * @param string $goalId Index of the goal to be updated. |
| 2832 | - * @param Google_Goal $postBody |
|
| 2832 | + * @param Google_Service_Analytics_Goal $postBody |
|
| 2833 | 2833 | * @param array $optParams Optional parameters. |
| 2834 | 2834 | * @return Google_Service_Analytics_Goal |
| 2835 | 2835 | */ |
@@ -2847,7 +2847,7 @@ discard block |
||
| 2847 | 2847 | * @param string $webPropertyId Web property ID to update the goal. |
| 2848 | 2848 | * @param string $profileId View (Profile) ID to update the goal. |
| 2849 | 2849 | * @param string $goalId Index of the goal to be updated. |
| 2850 | - * @param Google_Goal $postBody |
|
| 2850 | + * @param Google_Service_Analytics_Goal $postBody |
|
| 2851 | 2851 | * @param array $optParams Optional parameters. |
| 2852 | 2852 | * @return Google_Service_Analytics_Goal |
| 2853 | 2853 | */ |
@@ -2911,7 +2911,7 @@ discard block |
||
| 2911 | 2911 | * @param string $webPropertyId Web property Id to create profile filter link |
| 2912 | 2912 | * for. |
| 2913 | 2913 | * @param string $profileId Profile ID to create filter link for. |
| 2914 | - * @param Google_ProfileFilterLink $postBody |
|
| 2914 | + * @param Google_Service_Analytics_ProfileFilterLink $postBody |
|
| 2915 | 2915 | * @param array $optParams Optional parameters. |
| 2916 | 2916 | * @return Google_Service_Analytics_ProfileFilterLink |
| 2917 | 2917 | */ |
@@ -2957,7 +2957,7 @@ discard block |
||
| 2957 | 2957 | * belongs |
| 2958 | 2958 | * @param string $profileId Profile ID to which filter link belongs |
| 2959 | 2959 | * @param string $linkId ID of the profile filter link to be updated. |
| 2960 | - * @param Google_ProfileFilterLink $postBody |
|
| 2960 | + * @param Google_Service_Analytics_ProfileFilterLink $postBody |
|
| 2961 | 2961 | * @param array $optParams Optional parameters. |
| 2962 | 2962 | * @return Google_Service_Analytics_ProfileFilterLink |
| 2963 | 2963 | */ |
@@ -2976,7 +2976,7 @@ discard block |
||
| 2976 | 2976 | * belongs |
| 2977 | 2977 | * @param string $profileId Profile ID to which filter link belongs |
| 2978 | 2978 | * @param string $linkId ID of the profile filter link to be updated. |
| 2979 | - * @param Google_ProfileFilterLink $postBody |
|
| 2979 | + * @param Google_Service_Analytics_ProfileFilterLink $postBody |
|
| 2980 | 2980 | * @param array $optParams Optional parameters. |
| 2981 | 2981 | * @return Google_Service_Analytics_ProfileFilterLink |
| 2982 | 2982 | */ |
@@ -3020,7 +3020,7 @@ discard block |
||
| 3020 | 3020 | * @param string $accountId Account ID to create the user link for. |
| 3021 | 3021 | * @param string $webPropertyId Web Property ID to create the user link for. |
| 3022 | 3022 | * @param string $profileId View (Profile) ID to create the user link for. |
| 3023 | - * @param Google_EntityUserLink $postBody |
|
| 3023 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 3024 | 3024 | * @param array $optParams Optional parameters. |
| 3025 | 3025 | * @return Google_Service_Analytics_EntityUserLink |
| 3026 | 3026 | */ |
@@ -3067,7 +3067,7 @@ discard block |
||
| 3067 | 3067 | * @param string $webPropertyId Web Property ID to update the user link for. |
| 3068 | 3068 | * @param string $profileId View (Profile ID) to update the user link for. |
| 3069 | 3069 | * @param string $linkId Link ID to update the user link for. |
| 3070 | - * @param Google_EntityUserLink $postBody |
|
| 3070 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 3071 | 3071 | * @param array $optParams Optional parameters. |
| 3072 | 3072 | * @return Google_Service_Analytics_EntityUserLink |
| 3073 | 3073 | */ |
@@ -3127,7 +3127,7 @@ discard block |
||
| 3127 | 3127 | * @param string $accountId Account ID to create the view (profile) for. |
| 3128 | 3128 | * @param string $webPropertyId Web property ID to create the view (profile) |
| 3129 | 3129 | * for. |
| 3130 | - * @param Google_Profile $postBody |
|
| 3130 | + * @param Google_Service_Analytics_Profile $postBody |
|
| 3131 | 3131 | * @param array $optParams Optional parameters. |
| 3132 | 3132 | * @return Google_Service_Analytics_Profile |
| 3133 | 3133 | */ |
@@ -3171,7 +3171,7 @@ discard block |
||
| 3171 | 3171 | * @param string $webPropertyId Web property ID to which the view (profile) |
| 3172 | 3172 | * belongs |
| 3173 | 3173 | * @param string $profileId ID of the view (profile) to be updated. |
| 3174 | - * @param Google_Profile $postBody |
|
| 3174 | + * @param Google_Service_Analytics_Profile $postBody |
|
| 3175 | 3175 | * @param array $optParams Optional parameters. |
| 3176 | 3176 | * @return Google_Service_Analytics_Profile |
| 3177 | 3177 | */ |
@@ -3189,7 +3189,7 @@ discard block |
||
| 3189 | 3189 | * @param string $webPropertyId Web property ID to which the view (profile) |
| 3190 | 3190 | * belongs |
| 3191 | 3191 | * @param string $profileId ID of the view (profile) to be updated. |
| 3192 | - * @param Google_Profile $postBody |
|
| 3192 | + * @param Google_Service_Analytics_Profile $postBody |
|
| 3193 | 3193 | * @param array $optParams Optional parameters. |
| 3194 | 3194 | * @return Google_Service_Analytics_Profile |
| 3195 | 3195 | */ |
@@ -3268,7 +3268,7 @@ discard block |
||
| 3268 | 3268 | * for. |
| 3269 | 3269 | * @param string $profileId View (Profile) ID to create the unsampled report |
| 3270 | 3270 | * for. |
| 3271 | - * @param Google_UnsampledReport $postBody |
|
| 3271 | + * @param Google_Service_Analytics_UnsampledReport $postBody |
|
| 3272 | 3272 | * @param array $optParams Optional parameters. |
| 3273 | 3273 | * @return Google_Service_Analytics_UnsampledReport |
| 3274 | 3274 | */ |
@@ -3323,7 +3323,7 @@ discard block |
||
| 3323 | 3323 | * @param string $webPropertyId Web property Id for the uploads to be deleted. |
| 3324 | 3324 | * @param string $customDataSourceId Custom data source Id for the uploads to be |
| 3325 | 3325 | * deleted. |
| 3326 | - * @param Google_AnalyticsDataimportDeleteUploadDataRequest $postBody |
|
| 3326 | + * @param Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody |
|
| 3327 | 3327 | * @param array $optParams Optional parameters. |
| 3328 | 3328 | */ |
| 3329 | 3329 | public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array()) |
@@ -3444,7 +3444,7 @@ discard block |
||
| 3444 | 3444 | * @param string $accountId ID of the Google Analytics account to create the |
| 3445 | 3445 | * link for. |
| 3446 | 3446 | * @param string $webPropertyId Web property ID to create the link for. |
| 3447 | - * @param Google_EntityAdWordsLink $postBody |
|
| 3447 | + * @param Google_Service_Analytics_EntityAdWordsLink $postBody |
|
| 3448 | 3448 | * @param array $optParams Optional parameters. |
| 3449 | 3449 | * @return Google_Service_Analytics_EntityAdWordsLink |
| 3450 | 3450 | */ |
@@ -3488,7 +3488,7 @@ discard block |
||
| 3488 | 3488 | * @param string $webPropertyId Web property ID to retrieve the AdWords link |
| 3489 | 3489 | * for. |
| 3490 | 3490 | * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID. |
| 3491 | - * @param Google_EntityAdWordsLink $postBody |
|
| 3491 | + * @param Google_Service_Analytics_EntityAdWordsLink $postBody |
|
| 3492 | 3492 | * @param array $optParams Optional parameters. |
| 3493 | 3493 | * @return Google_Service_Analytics_EntityAdWordsLink |
| 3494 | 3494 | */ |
@@ -3508,7 +3508,7 @@ discard block |
||
| 3508 | 3508 | * @param string $webPropertyId Web property ID to retrieve the AdWords link |
| 3509 | 3509 | * for. |
| 3510 | 3510 | * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID. |
| 3511 | - * @param Google_EntityAdWordsLink $postBody |
|
| 3511 | + * @param Google_Service_Analytics_EntityAdWordsLink $postBody |
|
| 3512 | 3512 | * @param array $optParams Optional parameters. |
| 3513 | 3513 | * @return Google_Service_Analytics_EntityAdWordsLink |
| 3514 | 3514 | */ |
@@ -3551,7 +3551,7 @@ discard block |
||
| 3551 | 3551 | * least one profile. (webproperties.insert) |
| 3552 | 3552 | * |
| 3553 | 3553 | * @param string $accountId Account ID to create the web property for. |
| 3554 | - * @param Google_Webproperty $postBody |
|
| 3554 | + * @param Google_Service_Analytics_Webproperty $postBody |
|
| 3555 | 3555 | * @param array $optParams Optional parameters. |
| 3556 | 3556 | * @return Google_Service_Analytics_Webproperty |
| 3557 | 3557 | */ |
@@ -3590,7 +3590,7 @@ discard block |
||
| 3590 | 3590 | * |
| 3591 | 3591 | * @param string $accountId Account ID to which the web property belongs |
| 3592 | 3592 | * @param string $webPropertyId Web property ID |
| 3593 | - * @param Google_Webproperty $postBody |
|
| 3593 | + * @param Google_Service_Analytics_Webproperty $postBody |
|
| 3594 | 3594 | * @param array $optParams Optional parameters. |
| 3595 | 3595 | * @return Google_Service_Analytics_Webproperty |
| 3596 | 3596 | */ |
@@ -3606,7 +3606,7 @@ discard block |
||
| 3606 | 3606 | * |
| 3607 | 3607 | * @param string $accountId Account ID to which the web property belongs |
| 3608 | 3608 | * @param string $webPropertyId Web property ID |
| 3609 | - * @param Google_Webproperty $postBody |
|
| 3609 | + * @param Google_Service_Analytics_Webproperty $postBody |
|
| 3610 | 3610 | * @param array $optParams Optional parameters. |
| 3611 | 3611 | * @return Google_Service_Analytics_Webproperty |
| 3612 | 3612 | */ |
@@ -3648,7 +3648,7 @@ discard block |
||
| 3648 | 3648 | * |
| 3649 | 3649 | * @param string $accountId Account ID to create the user link for. |
| 3650 | 3650 | * @param string $webPropertyId Web Property ID to create the user link for. |
| 3651 | - * @param Google_EntityUserLink $postBody |
|
| 3651 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 3652 | 3652 | * @param array $optParams Optional parameters. |
| 3653 | 3653 | * @return Google_Service_Analytics_EntityUserLink |
| 3654 | 3654 | */ |
@@ -3691,7 +3691,7 @@ discard block |
||
| 3691 | 3691 | * @param string $webPropertyId Web property ID to update the account-user link |
| 3692 | 3692 | * for. |
| 3693 | 3693 | * @param string $linkId Link ID to update the account-user link for. |
| 3694 | - * @param Google_EntityUserLink $postBody |
|
| 3694 | + * @param Google_Service_Analytics_EntityUserLink $postBody |
|
| 3695 | 3695 | * @param array $optParams Optional parameters. |
| 3696 | 3696 | * @return Google_Service_Analytics_EntityUserLink |
| 3697 | 3697 | */ |
@@ -3756,7 +3756,7 @@ discard block |
||
| 3756 | 3756 | /** |
| 3757 | 3757 | * Creates an account ticket. (provisioning.createAccountTicket) |
| 3758 | 3758 | * |
| 3759 | - * @param Google_AccountTicket $postBody |
|
| 3759 | + * @param Google_Service_Analytics_AccountTicket $postBody |
|
| 3760 | 3760 | * @param array $optParams Optional parameters. |
| 3761 | 3761 | * @return Google_Service_Analytics_AccountTicket |
| 3762 | 3762 | */ |
@@ -32,22 +32,22 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** View and manage your Google Analytics data. */ |
| 34 | 34 | const ANALYTICS = |
| 35 | - "https://www.googleapis.com/auth/analytics"; |
|
| 35 | + "https://www.googleapis.com/auth/analytics"; |
|
| 36 | 36 | /** Edit Google Analytics management entities. */ |
| 37 | 37 | const ANALYTICS_EDIT = |
| 38 | - "https://www.googleapis.com/auth/analytics.edit"; |
|
| 38 | + "https://www.googleapis.com/auth/analytics.edit"; |
|
| 39 | 39 | /** Manage Google Analytics Account users by email address. */ |
| 40 | 40 | const ANALYTICS_MANAGE_USERS = |
| 41 | - "https://www.googleapis.com/auth/analytics.manage.users"; |
|
| 41 | + "https://www.googleapis.com/auth/analytics.manage.users"; |
|
| 42 | 42 | /** View Google Analytics user permissions. */ |
| 43 | 43 | const ANALYTICS_MANAGE_USERS_READONLY = |
| 44 | - "https://www.googleapis.com/auth/analytics.manage.users.readonly"; |
|
| 44 | + "https://www.googleapis.com/auth/analytics.manage.users.readonly"; |
|
| 45 | 45 | /** Create a new Google Analytics account along with its default property and view. */ |
| 46 | 46 | const ANALYTICS_PROVISION = |
| 47 | - "https://www.googleapis.com/auth/analytics.provision"; |
|
| 47 | + "https://www.googleapis.com/auth/analytics.provision"; |
|
| 48 | 48 | /** View your Google Analytics data. */ |
| 49 | 49 | const ANALYTICS_READONLY = |
| 50 | - "https://www.googleapis.com/auth/analytics.readonly"; |
|
| 50 | + "https://www.googleapis.com/auth/analytics.readonly"; |
|
| 51 | 51 | |
| 52 | 52 | public $data_ga; |
| 53 | 53 | public $data_mcf; |
@@ -81,1883 +81,1883 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | public function __construct(Google_Client $client) |
| 83 | 83 | { |
| 84 | - parent::__construct($client); |
|
| 85 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 86 | - $this->servicePath = 'analytics/v3/'; |
|
| 87 | - $this->version = 'v3'; |
|
| 88 | - $this->serviceName = 'analytics'; |
|
| 89 | - |
|
| 90 | - $this->data_ga = new Google_Service_Analytics_DataGa_Resource( |
|
| 91 | - $this, |
|
| 92 | - $this->serviceName, |
|
| 93 | - 'ga', |
|
| 94 | - array( |
|
| 95 | - 'methods' => array( |
|
| 96 | - 'get' => array( |
|
| 97 | - 'path' => 'data/ga', |
|
| 98 | - 'httpMethod' => 'GET', |
|
| 99 | - 'parameters' => array( |
|
| 100 | - 'ids' => array( |
|
| 101 | - 'location' => 'query', |
|
| 102 | - 'type' => 'string', |
|
| 103 | - 'required' => true, |
|
| 104 | - ), |
|
| 105 | - 'start-date' => array( |
|
| 106 | - 'location' => 'query', |
|
| 107 | - 'type' => 'string', |
|
| 108 | - 'required' => true, |
|
| 109 | - ), |
|
| 110 | - 'end-date' => array( |
|
| 111 | - 'location' => 'query', |
|
| 112 | - 'type' => 'string', |
|
| 113 | - 'required' => true, |
|
| 114 | - ), |
|
| 115 | - 'metrics' => array( |
|
| 116 | - 'location' => 'query', |
|
| 117 | - 'type' => 'string', |
|
| 118 | - 'required' => true, |
|
| 119 | - ), |
|
| 120 | - 'max-results' => array( |
|
| 121 | - 'location' => 'query', |
|
| 122 | - 'type' => 'integer', |
|
| 123 | - ), |
|
| 124 | - 'sort' => array( |
|
| 125 | - 'location' => 'query', |
|
| 126 | - 'type' => 'string', |
|
| 127 | - ), |
|
| 128 | - 'dimensions' => array( |
|
| 129 | - 'location' => 'query', |
|
| 130 | - 'type' => 'string', |
|
| 131 | - ), |
|
| 132 | - 'start-index' => array( |
|
| 133 | - 'location' => 'query', |
|
| 134 | - 'type' => 'integer', |
|
| 135 | - ), |
|
| 136 | - 'segment' => array( |
|
| 137 | - 'location' => 'query', |
|
| 138 | - 'type' => 'string', |
|
| 139 | - ), |
|
| 140 | - 'samplingLevel' => array( |
|
| 141 | - 'location' => 'query', |
|
| 142 | - 'type' => 'string', |
|
| 143 | - ), |
|
| 144 | - 'filters' => array( |
|
| 145 | - 'location' => 'query', |
|
| 146 | - 'type' => 'string', |
|
| 147 | - ), |
|
| 148 | - 'output' => array( |
|
| 149 | - 'location' => 'query', |
|
| 150 | - 'type' => 'string', |
|
| 151 | - ), |
|
| 152 | - ), |
|
| 153 | - ), |
|
| 154 | - ) |
|
| 155 | - ) |
|
| 156 | - ); |
|
| 157 | - $this->data_mcf = new Google_Service_Analytics_DataMcf_Resource( |
|
| 158 | - $this, |
|
| 159 | - $this->serviceName, |
|
| 160 | - 'mcf', |
|
| 161 | - array( |
|
| 162 | - 'methods' => array( |
|
| 163 | - 'get' => array( |
|
| 164 | - 'path' => 'data/mcf', |
|
| 165 | - 'httpMethod' => 'GET', |
|
| 166 | - 'parameters' => array( |
|
| 167 | - 'ids' => array( |
|
| 168 | - 'location' => 'query', |
|
| 169 | - 'type' => 'string', |
|
| 170 | - 'required' => true, |
|
| 171 | - ), |
|
| 172 | - 'start-date' => array( |
|
| 173 | - 'location' => 'query', |
|
| 174 | - 'type' => 'string', |
|
| 175 | - 'required' => true, |
|
| 176 | - ), |
|
| 177 | - 'end-date' => array( |
|
| 178 | - 'location' => 'query', |
|
| 179 | - 'type' => 'string', |
|
| 180 | - 'required' => true, |
|
| 181 | - ), |
|
| 182 | - 'metrics' => array( |
|
| 183 | - 'location' => 'query', |
|
| 184 | - 'type' => 'string', |
|
| 185 | - 'required' => true, |
|
| 186 | - ), |
|
| 187 | - 'max-results' => array( |
|
| 188 | - 'location' => 'query', |
|
| 189 | - 'type' => 'integer', |
|
| 190 | - ), |
|
| 191 | - 'sort' => array( |
|
| 192 | - 'location' => 'query', |
|
| 193 | - 'type' => 'string', |
|
| 194 | - ), |
|
| 195 | - 'dimensions' => array( |
|
| 196 | - 'location' => 'query', |
|
| 197 | - 'type' => 'string', |
|
| 198 | - ), |
|
| 199 | - 'start-index' => array( |
|
| 200 | - 'location' => 'query', |
|
| 201 | - 'type' => 'integer', |
|
| 202 | - ), |
|
| 203 | - 'samplingLevel' => array( |
|
| 204 | - 'location' => 'query', |
|
| 205 | - 'type' => 'string', |
|
| 206 | - ), |
|
| 207 | - 'filters' => array( |
|
| 208 | - 'location' => 'query', |
|
| 209 | - 'type' => 'string', |
|
| 210 | - ), |
|
| 211 | - ), |
|
| 212 | - ), |
|
| 213 | - ) |
|
| 214 | - ) |
|
| 215 | - ); |
|
| 216 | - $this->data_realtime = new Google_Service_Analytics_DataRealtime_Resource( |
|
| 217 | - $this, |
|
| 218 | - $this->serviceName, |
|
| 219 | - 'realtime', |
|
| 220 | - array( |
|
| 221 | - 'methods' => array( |
|
| 222 | - 'get' => array( |
|
| 223 | - 'path' => 'data/realtime', |
|
| 224 | - 'httpMethod' => 'GET', |
|
| 225 | - 'parameters' => array( |
|
| 226 | - 'ids' => array( |
|
| 227 | - 'location' => 'query', |
|
| 228 | - 'type' => 'string', |
|
| 229 | - 'required' => true, |
|
| 230 | - ), |
|
| 231 | - 'metrics' => array( |
|
| 232 | - 'location' => 'query', |
|
| 233 | - 'type' => 'string', |
|
| 234 | - 'required' => true, |
|
| 235 | - ), |
|
| 236 | - 'max-results' => array( |
|
| 237 | - 'location' => 'query', |
|
| 238 | - 'type' => 'integer', |
|
| 239 | - ), |
|
| 240 | - 'sort' => array( |
|
| 241 | - 'location' => 'query', |
|
| 242 | - 'type' => 'string', |
|
| 243 | - ), |
|
| 244 | - 'dimensions' => array( |
|
| 245 | - 'location' => 'query', |
|
| 246 | - 'type' => 'string', |
|
| 247 | - ), |
|
| 248 | - 'filters' => array( |
|
| 249 | - 'location' => 'query', |
|
| 250 | - 'type' => 'string', |
|
| 251 | - ), |
|
| 252 | - ), |
|
| 253 | - ), |
|
| 254 | - ) |
|
| 255 | - ) |
|
| 256 | - ); |
|
| 257 | - $this->management_accountSummaries = new Google_Service_Analytics_ManagementAccountSummaries_Resource( |
|
| 258 | - $this, |
|
| 259 | - $this->serviceName, |
|
| 260 | - 'accountSummaries', |
|
| 261 | - array( |
|
| 262 | - 'methods' => array( |
|
| 263 | - 'list' => array( |
|
| 264 | - 'path' => 'management/accountSummaries', |
|
| 265 | - 'httpMethod' => 'GET', |
|
| 266 | - 'parameters' => array( |
|
| 267 | - 'max-results' => array( |
|
| 268 | - 'location' => 'query', |
|
| 269 | - 'type' => 'integer', |
|
| 270 | - ), |
|
| 271 | - 'start-index' => array( |
|
| 272 | - 'location' => 'query', |
|
| 273 | - 'type' => 'integer', |
|
| 274 | - ), |
|
| 275 | - ), |
|
| 276 | - ), |
|
| 277 | - ) |
|
| 278 | - ) |
|
| 279 | - ); |
|
| 280 | - $this->management_accountUserLinks = new Google_Service_Analytics_ManagementAccountUserLinks_Resource( |
|
| 281 | - $this, |
|
| 282 | - $this->serviceName, |
|
| 283 | - 'accountUserLinks', |
|
| 284 | - array( |
|
| 285 | - 'methods' => array( |
|
| 286 | - 'delete' => array( |
|
| 287 | - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', |
|
| 288 | - 'httpMethod' => 'DELETE', |
|
| 289 | - 'parameters' => array( |
|
| 290 | - 'accountId' => array( |
|
| 291 | - 'location' => 'path', |
|
| 292 | - 'type' => 'string', |
|
| 293 | - 'required' => true, |
|
| 294 | - ), |
|
| 295 | - 'linkId' => array( |
|
| 296 | - 'location' => 'path', |
|
| 297 | - 'type' => 'string', |
|
| 298 | - 'required' => true, |
|
| 299 | - ), |
|
| 300 | - ), |
|
| 301 | - ),'insert' => array( |
|
| 302 | - 'path' => 'management/accounts/{accountId}/entityUserLinks', |
|
| 303 | - 'httpMethod' => 'POST', |
|
| 304 | - 'parameters' => array( |
|
| 305 | - 'accountId' => array( |
|
| 306 | - 'location' => 'path', |
|
| 307 | - 'type' => 'string', |
|
| 308 | - 'required' => true, |
|
| 309 | - ), |
|
| 310 | - ), |
|
| 311 | - ),'list' => array( |
|
| 312 | - 'path' => 'management/accounts/{accountId}/entityUserLinks', |
|
| 313 | - 'httpMethod' => 'GET', |
|
| 314 | - 'parameters' => array( |
|
| 315 | - 'accountId' => array( |
|
| 316 | - 'location' => 'path', |
|
| 317 | - 'type' => 'string', |
|
| 318 | - 'required' => true, |
|
| 319 | - ), |
|
| 320 | - 'max-results' => array( |
|
| 321 | - 'location' => 'query', |
|
| 322 | - 'type' => 'integer', |
|
| 323 | - ), |
|
| 324 | - 'start-index' => array( |
|
| 325 | - 'location' => 'query', |
|
| 326 | - 'type' => 'integer', |
|
| 327 | - ), |
|
| 328 | - ), |
|
| 329 | - ),'update' => array( |
|
| 330 | - 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', |
|
| 331 | - 'httpMethod' => 'PUT', |
|
| 332 | - 'parameters' => array( |
|
| 333 | - 'accountId' => array( |
|
| 334 | - 'location' => 'path', |
|
| 335 | - 'type' => 'string', |
|
| 336 | - 'required' => true, |
|
| 337 | - ), |
|
| 338 | - 'linkId' => array( |
|
| 339 | - 'location' => 'path', |
|
| 340 | - 'type' => 'string', |
|
| 341 | - 'required' => true, |
|
| 342 | - ), |
|
| 343 | - ), |
|
| 344 | - ), |
|
| 345 | - ) |
|
| 346 | - ) |
|
| 347 | - ); |
|
| 348 | - $this->management_accounts = new Google_Service_Analytics_ManagementAccounts_Resource( |
|
| 349 | - $this, |
|
| 350 | - $this->serviceName, |
|
| 351 | - 'accounts', |
|
| 352 | - array( |
|
| 353 | - 'methods' => array( |
|
| 354 | - 'list' => array( |
|
| 355 | - 'path' => 'management/accounts', |
|
| 356 | - 'httpMethod' => 'GET', |
|
| 357 | - 'parameters' => array( |
|
| 358 | - 'max-results' => array( |
|
| 359 | - 'location' => 'query', |
|
| 360 | - 'type' => 'integer', |
|
| 361 | - ), |
|
| 362 | - 'start-index' => array( |
|
| 363 | - 'location' => 'query', |
|
| 364 | - 'type' => 'integer', |
|
| 365 | - ), |
|
| 366 | - ), |
|
| 367 | - ), |
|
| 368 | - ) |
|
| 369 | - ) |
|
| 370 | - ); |
|
| 371 | - $this->management_customDataSources = new Google_Service_Analytics_ManagementCustomDataSources_Resource( |
|
| 372 | - $this, |
|
| 373 | - $this->serviceName, |
|
| 374 | - 'customDataSources', |
|
| 375 | - array( |
|
| 376 | - 'methods' => array( |
|
| 377 | - 'list' => array( |
|
| 378 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources', |
|
| 379 | - 'httpMethod' => 'GET', |
|
| 380 | - 'parameters' => array( |
|
| 381 | - 'accountId' => array( |
|
| 382 | - 'location' => 'path', |
|
| 383 | - 'type' => 'string', |
|
| 384 | - 'required' => true, |
|
| 385 | - ), |
|
| 386 | - 'webPropertyId' => array( |
|
| 387 | - 'location' => 'path', |
|
| 388 | - 'type' => 'string', |
|
| 389 | - 'required' => true, |
|
| 390 | - ), |
|
| 391 | - 'max-results' => array( |
|
| 392 | - 'location' => 'query', |
|
| 393 | - 'type' => 'integer', |
|
| 394 | - ), |
|
| 395 | - 'start-index' => array( |
|
| 396 | - 'location' => 'query', |
|
| 397 | - 'type' => 'integer', |
|
| 398 | - ), |
|
| 399 | - ), |
|
| 400 | - ), |
|
| 401 | - ) |
|
| 402 | - ) |
|
| 403 | - ); |
|
| 404 | - $this->management_customDimensions = new Google_Service_Analytics_ManagementCustomDimensions_Resource( |
|
| 405 | - $this, |
|
| 406 | - $this->serviceName, |
|
| 407 | - 'customDimensions', |
|
| 408 | - array( |
|
| 409 | - 'methods' => array( |
|
| 410 | - 'get' => array( |
|
| 411 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 412 | - 'httpMethod' => 'GET', |
|
| 413 | - 'parameters' => array( |
|
| 414 | - 'accountId' => array( |
|
| 415 | - 'location' => 'path', |
|
| 416 | - 'type' => 'string', |
|
| 417 | - 'required' => true, |
|
| 418 | - ), |
|
| 419 | - 'webPropertyId' => array( |
|
| 420 | - 'location' => 'path', |
|
| 421 | - 'type' => 'string', |
|
| 422 | - 'required' => true, |
|
| 423 | - ), |
|
| 424 | - 'customDimensionId' => array( |
|
| 425 | - 'location' => 'path', |
|
| 426 | - 'type' => 'string', |
|
| 427 | - 'required' => true, |
|
| 428 | - ), |
|
| 429 | - ), |
|
| 430 | - ),'insert' => array( |
|
| 431 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
|
| 432 | - 'httpMethod' => 'POST', |
|
| 433 | - 'parameters' => array( |
|
| 434 | - 'accountId' => array( |
|
| 435 | - 'location' => 'path', |
|
| 436 | - 'type' => 'string', |
|
| 437 | - 'required' => true, |
|
| 438 | - ), |
|
| 439 | - 'webPropertyId' => array( |
|
| 440 | - 'location' => 'path', |
|
| 441 | - 'type' => 'string', |
|
| 442 | - 'required' => true, |
|
| 443 | - ), |
|
| 444 | - ), |
|
| 445 | - ),'list' => array( |
|
| 446 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
|
| 447 | - 'httpMethod' => 'GET', |
|
| 448 | - 'parameters' => array( |
|
| 449 | - 'accountId' => array( |
|
| 450 | - 'location' => 'path', |
|
| 451 | - 'type' => 'string', |
|
| 452 | - 'required' => true, |
|
| 453 | - ), |
|
| 454 | - 'webPropertyId' => array( |
|
| 455 | - 'location' => 'path', |
|
| 456 | - 'type' => 'string', |
|
| 457 | - 'required' => true, |
|
| 458 | - ), |
|
| 459 | - 'max-results' => array( |
|
| 460 | - 'location' => 'query', |
|
| 461 | - 'type' => 'integer', |
|
| 462 | - ), |
|
| 463 | - 'start-index' => array( |
|
| 464 | - 'location' => 'query', |
|
| 465 | - 'type' => 'integer', |
|
| 466 | - ), |
|
| 467 | - ), |
|
| 468 | - ),'patch' => array( |
|
| 469 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 470 | - 'httpMethod' => 'PATCH', |
|
| 471 | - 'parameters' => array( |
|
| 472 | - 'accountId' => array( |
|
| 473 | - 'location' => 'path', |
|
| 474 | - 'type' => 'string', |
|
| 475 | - 'required' => true, |
|
| 476 | - ), |
|
| 477 | - 'webPropertyId' => array( |
|
| 478 | - 'location' => 'path', |
|
| 479 | - 'type' => 'string', |
|
| 480 | - 'required' => true, |
|
| 481 | - ), |
|
| 482 | - 'customDimensionId' => array( |
|
| 483 | - 'location' => 'path', |
|
| 484 | - 'type' => 'string', |
|
| 485 | - 'required' => true, |
|
| 486 | - ), |
|
| 487 | - 'ignoreCustomDataSourceLinks' => array( |
|
| 488 | - 'location' => 'query', |
|
| 489 | - 'type' => 'boolean', |
|
| 490 | - ), |
|
| 491 | - ), |
|
| 492 | - ),'update' => array( |
|
| 493 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 494 | - 'httpMethod' => 'PUT', |
|
| 495 | - 'parameters' => array( |
|
| 496 | - 'accountId' => array( |
|
| 497 | - 'location' => 'path', |
|
| 498 | - 'type' => 'string', |
|
| 499 | - 'required' => true, |
|
| 500 | - ), |
|
| 501 | - 'webPropertyId' => array( |
|
| 502 | - 'location' => 'path', |
|
| 503 | - 'type' => 'string', |
|
| 504 | - 'required' => true, |
|
| 505 | - ), |
|
| 506 | - 'customDimensionId' => array( |
|
| 507 | - 'location' => 'path', |
|
| 508 | - 'type' => 'string', |
|
| 509 | - 'required' => true, |
|
| 510 | - ), |
|
| 511 | - 'ignoreCustomDataSourceLinks' => array( |
|
| 512 | - 'location' => 'query', |
|
| 513 | - 'type' => 'boolean', |
|
| 514 | - ), |
|
| 515 | - ), |
|
| 516 | - ), |
|
| 517 | - ) |
|
| 518 | - ) |
|
| 519 | - ); |
|
| 520 | - $this->management_customMetrics = new Google_Service_Analytics_ManagementCustomMetrics_Resource( |
|
| 521 | - $this, |
|
| 522 | - $this->serviceName, |
|
| 523 | - 'customMetrics', |
|
| 524 | - array( |
|
| 525 | - 'methods' => array( |
|
| 526 | - 'get' => array( |
|
| 527 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 528 | - 'httpMethod' => 'GET', |
|
| 529 | - 'parameters' => array( |
|
| 530 | - 'accountId' => array( |
|
| 531 | - 'location' => 'path', |
|
| 532 | - 'type' => 'string', |
|
| 533 | - 'required' => true, |
|
| 534 | - ), |
|
| 535 | - 'webPropertyId' => array( |
|
| 536 | - 'location' => 'path', |
|
| 537 | - 'type' => 'string', |
|
| 538 | - 'required' => true, |
|
| 539 | - ), |
|
| 540 | - 'customMetricId' => array( |
|
| 541 | - 'location' => 'path', |
|
| 542 | - 'type' => 'string', |
|
| 543 | - 'required' => true, |
|
| 544 | - ), |
|
| 545 | - ), |
|
| 546 | - ),'insert' => array( |
|
| 547 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
|
| 548 | - 'httpMethod' => 'POST', |
|
| 549 | - 'parameters' => array( |
|
| 550 | - 'accountId' => array( |
|
| 551 | - 'location' => 'path', |
|
| 552 | - 'type' => 'string', |
|
| 553 | - 'required' => true, |
|
| 554 | - ), |
|
| 555 | - 'webPropertyId' => array( |
|
| 556 | - 'location' => 'path', |
|
| 557 | - 'type' => 'string', |
|
| 558 | - 'required' => true, |
|
| 559 | - ), |
|
| 560 | - ), |
|
| 561 | - ),'list' => array( |
|
| 562 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
|
| 563 | - 'httpMethod' => 'GET', |
|
| 564 | - 'parameters' => array( |
|
| 565 | - 'accountId' => array( |
|
| 566 | - 'location' => 'path', |
|
| 567 | - 'type' => 'string', |
|
| 568 | - 'required' => true, |
|
| 569 | - ), |
|
| 570 | - 'webPropertyId' => array( |
|
| 571 | - 'location' => 'path', |
|
| 572 | - 'type' => 'string', |
|
| 573 | - 'required' => true, |
|
| 574 | - ), |
|
| 575 | - 'max-results' => array( |
|
| 576 | - 'location' => 'query', |
|
| 577 | - 'type' => 'integer', |
|
| 578 | - ), |
|
| 579 | - 'start-index' => array( |
|
| 580 | - 'location' => 'query', |
|
| 581 | - 'type' => 'integer', |
|
| 582 | - ), |
|
| 583 | - ), |
|
| 584 | - ),'patch' => array( |
|
| 585 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 586 | - 'httpMethod' => 'PATCH', |
|
| 587 | - 'parameters' => array( |
|
| 588 | - 'accountId' => array( |
|
| 589 | - 'location' => 'path', |
|
| 590 | - 'type' => 'string', |
|
| 591 | - 'required' => true, |
|
| 592 | - ), |
|
| 593 | - 'webPropertyId' => array( |
|
| 594 | - 'location' => 'path', |
|
| 595 | - 'type' => 'string', |
|
| 596 | - 'required' => true, |
|
| 597 | - ), |
|
| 598 | - 'customMetricId' => array( |
|
| 599 | - 'location' => 'path', |
|
| 600 | - 'type' => 'string', |
|
| 601 | - 'required' => true, |
|
| 602 | - ), |
|
| 603 | - 'ignoreCustomDataSourceLinks' => array( |
|
| 604 | - 'location' => 'query', |
|
| 605 | - 'type' => 'boolean', |
|
| 606 | - ), |
|
| 607 | - ), |
|
| 608 | - ),'update' => array( |
|
| 609 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 610 | - 'httpMethod' => 'PUT', |
|
| 611 | - 'parameters' => array( |
|
| 612 | - 'accountId' => array( |
|
| 613 | - 'location' => 'path', |
|
| 614 | - 'type' => 'string', |
|
| 615 | - 'required' => true, |
|
| 616 | - ), |
|
| 617 | - 'webPropertyId' => array( |
|
| 618 | - 'location' => 'path', |
|
| 619 | - 'type' => 'string', |
|
| 620 | - 'required' => true, |
|
| 621 | - ), |
|
| 622 | - 'customMetricId' => array( |
|
| 623 | - 'location' => 'path', |
|
| 624 | - 'type' => 'string', |
|
| 625 | - 'required' => true, |
|
| 626 | - ), |
|
| 627 | - 'ignoreCustomDataSourceLinks' => array( |
|
| 628 | - 'location' => 'query', |
|
| 629 | - 'type' => 'boolean', |
|
| 630 | - ), |
|
| 631 | - ), |
|
| 632 | - ), |
|
| 633 | - ) |
|
| 634 | - ) |
|
| 635 | - ); |
|
| 636 | - $this->management_experiments = new Google_Service_Analytics_ManagementExperiments_Resource( |
|
| 637 | - $this, |
|
| 638 | - $this->serviceName, |
|
| 639 | - 'experiments', |
|
| 640 | - array( |
|
| 641 | - 'methods' => array( |
|
| 642 | - 'delete' => array( |
|
| 643 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 644 | - 'httpMethod' => 'DELETE', |
|
| 645 | - 'parameters' => array( |
|
| 646 | - 'accountId' => array( |
|
| 647 | - 'location' => 'path', |
|
| 648 | - 'type' => 'string', |
|
| 649 | - 'required' => true, |
|
| 650 | - ), |
|
| 651 | - 'webPropertyId' => array( |
|
| 652 | - 'location' => 'path', |
|
| 653 | - 'type' => 'string', |
|
| 654 | - 'required' => true, |
|
| 655 | - ), |
|
| 656 | - 'profileId' => array( |
|
| 657 | - 'location' => 'path', |
|
| 658 | - 'type' => 'string', |
|
| 659 | - 'required' => true, |
|
| 660 | - ), |
|
| 661 | - 'experimentId' => array( |
|
| 662 | - 'location' => 'path', |
|
| 663 | - 'type' => 'string', |
|
| 664 | - 'required' => true, |
|
| 665 | - ), |
|
| 666 | - ), |
|
| 667 | - ),'get' => array( |
|
| 668 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 669 | - 'httpMethod' => 'GET', |
|
| 670 | - 'parameters' => array( |
|
| 671 | - 'accountId' => array( |
|
| 672 | - 'location' => 'path', |
|
| 673 | - 'type' => 'string', |
|
| 674 | - 'required' => true, |
|
| 675 | - ), |
|
| 676 | - 'webPropertyId' => array( |
|
| 677 | - 'location' => 'path', |
|
| 678 | - 'type' => 'string', |
|
| 679 | - 'required' => true, |
|
| 680 | - ), |
|
| 681 | - 'profileId' => array( |
|
| 682 | - 'location' => 'path', |
|
| 683 | - 'type' => 'string', |
|
| 684 | - 'required' => true, |
|
| 685 | - ), |
|
| 686 | - 'experimentId' => array( |
|
| 687 | - 'location' => 'path', |
|
| 688 | - 'type' => 'string', |
|
| 689 | - 'required' => true, |
|
| 690 | - ), |
|
| 691 | - ), |
|
| 692 | - ),'insert' => array( |
|
| 693 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
|
| 694 | - 'httpMethod' => 'POST', |
|
| 695 | - 'parameters' => array( |
|
| 696 | - 'accountId' => array( |
|
| 697 | - 'location' => 'path', |
|
| 698 | - 'type' => 'string', |
|
| 699 | - 'required' => true, |
|
| 700 | - ), |
|
| 701 | - 'webPropertyId' => array( |
|
| 702 | - 'location' => 'path', |
|
| 703 | - 'type' => 'string', |
|
| 704 | - 'required' => true, |
|
| 705 | - ), |
|
| 706 | - 'profileId' => array( |
|
| 707 | - 'location' => 'path', |
|
| 708 | - 'type' => 'string', |
|
| 709 | - 'required' => true, |
|
| 710 | - ), |
|
| 711 | - ), |
|
| 712 | - ),'list' => array( |
|
| 713 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
|
| 714 | - 'httpMethod' => 'GET', |
|
| 715 | - 'parameters' => array( |
|
| 716 | - 'accountId' => array( |
|
| 717 | - 'location' => 'path', |
|
| 718 | - 'type' => 'string', |
|
| 719 | - 'required' => true, |
|
| 720 | - ), |
|
| 721 | - 'webPropertyId' => array( |
|
| 722 | - 'location' => 'path', |
|
| 723 | - 'type' => 'string', |
|
| 724 | - 'required' => true, |
|
| 725 | - ), |
|
| 726 | - 'profileId' => array( |
|
| 727 | - 'location' => 'path', |
|
| 728 | - 'type' => 'string', |
|
| 729 | - 'required' => true, |
|
| 730 | - ), |
|
| 731 | - 'max-results' => array( |
|
| 732 | - 'location' => 'query', |
|
| 733 | - 'type' => 'integer', |
|
| 734 | - ), |
|
| 735 | - 'start-index' => array( |
|
| 736 | - 'location' => 'query', |
|
| 737 | - 'type' => 'integer', |
|
| 738 | - ), |
|
| 739 | - ), |
|
| 740 | - ),'patch' => array( |
|
| 741 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 742 | - 'httpMethod' => 'PATCH', |
|
| 743 | - 'parameters' => array( |
|
| 744 | - 'accountId' => array( |
|
| 745 | - 'location' => 'path', |
|
| 746 | - 'type' => 'string', |
|
| 747 | - 'required' => true, |
|
| 748 | - ), |
|
| 749 | - 'webPropertyId' => array( |
|
| 750 | - 'location' => 'path', |
|
| 751 | - 'type' => 'string', |
|
| 752 | - 'required' => true, |
|
| 753 | - ), |
|
| 754 | - 'profileId' => array( |
|
| 755 | - 'location' => 'path', |
|
| 756 | - 'type' => 'string', |
|
| 757 | - 'required' => true, |
|
| 758 | - ), |
|
| 759 | - 'experimentId' => array( |
|
| 760 | - 'location' => 'path', |
|
| 761 | - 'type' => 'string', |
|
| 762 | - 'required' => true, |
|
| 763 | - ), |
|
| 764 | - ), |
|
| 765 | - ),'update' => array( |
|
| 766 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 767 | - 'httpMethod' => 'PUT', |
|
| 768 | - 'parameters' => array( |
|
| 769 | - 'accountId' => array( |
|
| 770 | - 'location' => 'path', |
|
| 771 | - 'type' => 'string', |
|
| 772 | - 'required' => true, |
|
| 773 | - ), |
|
| 774 | - 'webPropertyId' => array( |
|
| 775 | - 'location' => 'path', |
|
| 776 | - 'type' => 'string', |
|
| 777 | - 'required' => true, |
|
| 778 | - ), |
|
| 779 | - 'profileId' => array( |
|
| 780 | - 'location' => 'path', |
|
| 781 | - 'type' => 'string', |
|
| 782 | - 'required' => true, |
|
| 783 | - ), |
|
| 784 | - 'experimentId' => array( |
|
| 785 | - 'location' => 'path', |
|
| 786 | - 'type' => 'string', |
|
| 787 | - 'required' => true, |
|
| 788 | - ), |
|
| 789 | - ), |
|
| 790 | - ), |
|
| 791 | - ) |
|
| 792 | - ) |
|
| 793 | - ); |
|
| 794 | - $this->management_filters = new Google_Service_Analytics_ManagementFilters_Resource( |
|
| 795 | - $this, |
|
| 796 | - $this->serviceName, |
|
| 797 | - 'filters', |
|
| 798 | - array( |
|
| 799 | - 'methods' => array( |
|
| 800 | - 'delete' => array( |
|
| 801 | - 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 802 | - 'httpMethod' => 'DELETE', |
|
| 803 | - 'parameters' => array( |
|
| 804 | - 'accountId' => array( |
|
| 805 | - 'location' => 'path', |
|
| 806 | - 'type' => 'string', |
|
| 807 | - 'required' => true, |
|
| 808 | - ), |
|
| 809 | - 'filterId' => array( |
|
| 810 | - 'location' => 'path', |
|
| 811 | - 'type' => 'string', |
|
| 812 | - 'required' => true, |
|
| 813 | - ), |
|
| 814 | - ), |
|
| 815 | - ),'get' => array( |
|
| 816 | - 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 817 | - 'httpMethod' => 'GET', |
|
| 818 | - 'parameters' => array( |
|
| 819 | - 'accountId' => array( |
|
| 820 | - 'location' => 'path', |
|
| 821 | - 'type' => 'string', |
|
| 822 | - 'required' => true, |
|
| 823 | - ), |
|
| 824 | - 'filterId' => array( |
|
| 825 | - 'location' => 'path', |
|
| 826 | - 'type' => 'string', |
|
| 827 | - 'required' => true, |
|
| 828 | - ), |
|
| 829 | - ), |
|
| 830 | - ),'insert' => array( |
|
| 831 | - 'path' => 'management/accounts/{accountId}/filters', |
|
| 832 | - 'httpMethod' => 'POST', |
|
| 833 | - 'parameters' => array( |
|
| 834 | - 'accountId' => array( |
|
| 835 | - 'location' => 'path', |
|
| 836 | - 'type' => 'string', |
|
| 837 | - 'required' => true, |
|
| 838 | - ), |
|
| 839 | - ), |
|
| 840 | - ),'list' => array( |
|
| 841 | - 'path' => 'management/accounts/{accountId}/filters', |
|
| 842 | - 'httpMethod' => 'GET', |
|
| 843 | - 'parameters' => array( |
|
| 844 | - 'accountId' => array( |
|
| 845 | - 'location' => 'path', |
|
| 846 | - 'type' => 'string', |
|
| 847 | - 'required' => true, |
|
| 848 | - ), |
|
| 849 | - 'max-results' => array( |
|
| 850 | - 'location' => 'query', |
|
| 851 | - 'type' => 'integer', |
|
| 852 | - ), |
|
| 853 | - 'start-index' => array( |
|
| 854 | - 'location' => 'query', |
|
| 855 | - 'type' => 'integer', |
|
| 856 | - ), |
|
| 857 | - ), |
|
| 858 | - ),'patch' => array( |
|
| 859 | - 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 860 | - 'httpMethod' => 'PATCH', |
|
| 861 | - 'parameters' => array( |
|
| 862 | - 'accountId' => array( |
|
| 863 | - 'location' => 'path', |
|
| 864 | - 'type' => 'string', |
|
| 865 | - 'required' => true, |
|
| 866 | - ), |
|
| 867 | - 'filterId' => array( |
|
| 868 | - 'location' => 'path', |
|
| 869 | - 'type' => 'string', |
|
| 870 | - 'required' => true, |
|
| 871 | - ), |
|
| 872 | - ), |
|
| 873 | - ),'update' => array( |
|
| 874 | - 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 875 | - 'httpMethod' => 'PUT', |
|
| 876 | - 'parameters' => array( |
|
| 877 | - 'accountId' => array( |
|
| 878 | - 'location' => 'path', |
|
| 879 | - 'type' => 'string', |
|
| 880 | - 'required' => true, |
|
| 881 | - ), |
|
| 882 | - 'filterId' => array( |
|
| 883 | - 'location' => 'path', |
|
| 884 | - 'type' => 'string', |
|
| 885 | - 'required' => true, |
|
| 886 | - ), |
|
| 887 | - ), |
|
| 888 | - ), |
|
| 889 | - ) |
|
| 890 | - ) |
|
| 891 | - ); |
|
| 892 | - $this->management_goals = new Google_Service_Analytics_ManagementGoals_Resource( |
|
| 893 | - $this, |
|
| 894 | - $this->serviceName, |
|
| 895 | - 'goals', |
|
| 896 | - array( |
|
| 897 | - 'methods' => array( |
|
| 898 | - 'get' => array( |
|
| 899 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 900 | - 'httpMethod' => 'GET', |
|
| 901 | - 'parameters' => array( |
|
| 902 | - 'accountId' => array( |
|
| 903 | - 'location' => 'path', |
|
| 904 | - 'type' => 'string', |
|
| 905 | - 'required' => true, |
|
| 906 | - ), |
|
| 907 | - 'webPropertyId' => array( |
|
| 908 | - 'location' => 'path', |
|
| 909 | - 'type' => 'string', |
|
| 910 | - 'required' => true, |
|
| 911 | - ), |
|
| 912 | - 'profileId' => array( |
|
| 913 | - 'location' => 'path', |
|
| 914 | - 'type' => 'string', |
|
| 915 | - 'required' => true, |
|
| 916 | - ), |
|
| 917 | - 'goalId' => array( |
|
| 918 | - 'location' => 'path', |
|
| 919 | - 'type' => 'string', |
|
| 920 | - 'required' => true, |
|
| 921 | - ), |
|
| 922 | - ), |
|
| 923 | - ),'insert' => array( |
|
| 924 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
|
| 925 | - 'httpMethod' => 'POST', |
|
| 926 | - 'parameters' => array( |
|
| 927 | - 'accountId' => array( |
|
| 928 | - 'location' => 'path', |
|
| 929 | - 'type' => 'string', |
|
| 930 | - 'required' => true, |
|
| 931 | - ), |
|
| 932 | - 'webPropertyId' => array( |
|
| 933 | - 'location' => 'path', |
|
| 934 | - 'type' => 'string', |
|
| 935 | - 'required' => true, |
|
| 936 | - ), |
|
| 937 | - 'profileId' => array( |
|
| 938 | - 'location' => 'path', |
|
| 939 | - 'type' => 'string', |
|
| 940 | - 'required' => true, |
|
| 941 | - ), |
|
| 942 | - ), |
|
| 943 | - ),'list' => array( |
|
| 944 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
|
| 945 | - 'httpMethod' => 'GET', |
|
| 946 | - 'parameters' => array( |
|
| 947 | - 'accountId' => array( |
|
| 948 | - 'location' => 'path', |
|
| 949 | - 'type' => 'string', |
|
| 950 | - 'required' => true, |
|
| 951 | - ), |
|
| 952 | - 'webPropertyId' => array( |
|
| 953 | - 'location' => 'path', |
|
| 954 | - 'type' => 'string', |
|
| 955 | - 'required' => true, |
|
| 956 | - ), |
|
| 957 | - 'profileId' => array( |
|
| 958 | - 'location' => 'path', |
|
| 959 | - 'type' => 'string', |
|
| 960 | - 'required' => true, |
|
| 961 | - ), |
|
| 962 | - 'max-results' => array( |
|
| 963 | - 'location' => 'query', |
|
| 964 | - 'type' => 'integer', |
|
| 965 | - ), |
|
| 966 | - 'start-index' => array( |
|
| 967 | - 'location' => 'query', |
|
| 968 | - 'type' => 'integer', |
|
| 969 | - ), |
|
| 970 | - ), |
|
| 971 | - ),'patch' => array( |
|
| 972 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 973 | - 'httpMethod' => 'PATCH', |
|
| 974 | - 'parameters' => array( |
|
| 975 | - 'accountId' => array( |
|
| 976 | - 'location' => 'path', |
|
| 977 | - 'type' => 'string', |
|
| 978 | - 'required' => true, |
|
| 979 | - ), |
|
| 980 | - 'webPropertyId' => array( |
|
| 981 | - 'location' => 'path', |
|
| 982 | - 'type' => 'string', |
|
| 983 | - 'required' => true, |
|
| 984 | - ), |
|
| 985 | - 'profileId' => array( |
|
| 986 | - 'location' => 'path', |
|
| 987 | - 'type' => 'string', |
|
| 988 | - 'required' => true, |
|
| 989 | - ), |
|
| 990 | - 'goalId' => array( |
|
| 991 | - 'location' => 'path', |
|
| 992 | - 'type' => 'string', |
|
| 993 | - 'required' => true, |
|
| 994 | - ), |
|
| 995 | - ), |
|
| 996 | - ),'update' => array( |
|
| 997 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 998 | - 'httpMethod' => 'PUT', |
|
| 999 | - 'parameters' => array( |
|
| 1000 | - 'accountId' => array( |
|
| 1001 | - 'location' => 'path', |
|
| 1002 | - 'type' => 'string', |
|
| 1003 | - 'required' => true, |
|
| 1004 | - ), |
|
| 1005 | - 'webPropertyId' => array( |
|
| 1006 | - 'location' => 'path', |
|
| 1007 | - 'type' => 'string', |
|
| 1008 | - 'required' => true, |
|
| 1009 | - ), |
|
| 1010 | - 'profileId' => array( |
|
| 1011 | - 'location' => 'path', |
|
| 1012 | - 'type' => 'string', |
|
| 1013 | - 'required' => true, |
|
| 1014 | - ), |
|
| 1015 | - 'goalId' => array( |
|
| 1016 | - 'location' => 'path', |
|
| 1017 | - 'type' => 'string', |
|
| 1018 | - 'required' => true, |
|
| 1019 | - ), |
|
| 1020 | - ), |
|
| 1021 | - ), |
|
| 1022 | - ) |
|
| 1023 | - ) |
|
| 1024 | - ); |
|
| 1025 | - $this->management_profileFilterLinks = new Google_Service_Analytics_ManagementProfileFilterLinks_Resource( |
|
| 1026 | - $this, |
|
| 1027 | - $this->serviceName, |
|
| 1028 | - 'profileFilterLinks', |
|
| 1029 | - array( |
|
| 1030 | - 'methods' => array( |
|
| 1031 | - 'delete' => array( |
|
| 1032 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1033 | - 'httpMethod' => 'DELETE', |
|
| 1034 | - 'parameters' => array( |
|
| 1035 | - 'accountId' => array( |
|
| 1036 | - 'location' => 'path', |
|
| 1037 | - 'type' => 'string', |
|
| 1038 | - 'required' => true, |
|
| 1039 | - ), |
|
| 1040 | - 'webPropertyId' => array( |
|
| 1041 | - 'location' => 'path', |
|
| 1042 | - 'type' => 'string', |
|
| 1043 | - 'required' => true, |
|
| 1044 | - ), |
|
| 1045 | - 'profileId' => array( |
|
| 1046 | - 'location' => 'path', |
|
| 1047 | - 'type' => 'string', |
|
| 1048 | - 'required' => true, |
|
| 1049 | - ), |
|
| 1050 | - 'linkId' => array( |
|
| 1051 | - 'location' => 'path', |
|
| 1052 | - 'type' => 'string', |
|
| 1053 | - 'required' => true, |
|
| 1054 | - ), |
|
| 1055 | - ), |
|
| 1056 | - ),'get' => array( |
|
| 1057 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1058 | - 'httpMethod' => 'GET', |
|
| 1059 | - 'parameters' => array( |
|
| 1060 | - 'accountId' => array( |
|
| 1061 | - 'location' => 'path', |
|
| 1062 | - 'type' => 'string', |
|
| 1063 | - 'required' => true, |
|
| 1064 | - ), |
|
| 1065 | - 'webPropertyId' => array( |
|
| 1066 | - 'location' => 'path', |
|
| 1067 | - 'type' => 'string', |
|
| 1068 | - 'required' => true, |
|
| 1069 | - ), |
|
| 1070 | - 'profileId' => array( |
|
| 1071 | - 'location' => 'path', |
|
| 1072 | - 'type' => 'string', |
|
| 1073 | - 'required' => true, |
|
| 1074 | - ), |
|
| 1075 | - 'linkId' => array( |
|
| 1076 | - 'location' => 'path', |
|
| 1077 | - 'type' => 'string', |
|
| 1078 | - 'required' => true, |
|
| 1079 | - ), |
|
| 1080 | - ), |
|
| 1081 | - ),'insert' => array( |
|
| 1082 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
|
| 1083 | - 'httpMethod' => 'POST', |
|
| 1084 | - 'parameters' => array( |
|
| 1085 | - 'accountId' => array( |
|
| 1086 | - 'location' => 'path', |
|
| 1087 | - 'type' => 'string', |
|
| 1088 | - 'required' => true, |
|
| 1089 | - ), |
|
| 1090 | - 'webPropertyId' => array( |
|
| 1091 | - 'location' => 'path', |
|
| 1092 | - 'type' => 'string', |
|
| 1093 | - 'required' => true, |
|
| 1094 | - ), |
|
| 1095 | - 'profileId' => array( |
|
| 1096 | - 'location' => 'path', |
|
| 1097 | - 'type' => 'string', |
|
| 1098 | - 'required' => true, |
|
| 1099 | - ), |
|
| 1100 | - ), |
|
| 1101 | - ),'list' => array( |
|
| 1102 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
|
| 1103 | - 'httpMethod' => 'GET', |
|
| 1104 | - 'parameters' => array( |
|
| 1105 | - 'accountId' => array( |
|
| 1106 | - 'location' => 'path', |
|
| 1107 | - 'type' => 'string', |
|
| 1108 | - 'required' => true, |
|
| 1109 | - ), |
|
| 1110 | - 'webPropertyId' => array( |
|
| 1111 | - 'location' => 'path', |
|
| 1112 | - 'type' => 'string', |
|
| 1113 | - 'required' => true, |
|
| 1114 | - ), |
|
| 1115 | - 'profileId' => array( |
|
| 1116 | - 'location' => 'path', |
|
| 1117 | - 'type' => 'string', |
|
| 1118 | - 'required' => true, |
|
| 1119 | - ), |
|
| 1120 | - 'max-results' => array( |
|
| 1121 | - 'location' => 'query', |
|
| 1122 | - 'type' => 'integer', |
|
| 1123 | - ), |
|
| 1124 | - 'start-index' => array( |
|
| 1125 | - 'location' => 'query', |
|
| 1126 | - 'type' => 'integer', |
|
| 1127 | - ), |
|
| 1128 | - ), |
|
| 1129 | - ),'patch' => array( |
|
| 1130 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1131 | - 'httpMethod' => 'PATCH', |
|
| 1132 | - 'parameters' => array( |
|
| 1133 | - 'accountId' => array( |
|
| 1134 | - 'location' => 'path', |
|
| 1135 | - 'type' => 'string', |
|
| 1136 | - 'required' => true, |
|
| 1137 | - ), |
|
| 1138 | - 'webPropertyId' => array( |
|
| 1139 | - 'location' => 'path', |
|
| 1140 | - 'type' => 'string', |
|
| 1141 | - 'required' => true, |
|
| 1142 | - ), |
|
| 1143 | - 'profileId' => array( |
|
| 1144 | - 'location' => 'path', |
|
| 1145 | - 'type' => 'string', |
|
| 1146 | - 'required' => true, |
|
| 1147 | - ), |
|
| 1148 | - 'linkId' => array( |
|
| 1149 | - 'location' => 'path', |
|
| 1150 | - 'type' => 'string', |
|
| 1151 | - 'required' => true, |
|
| 1152 | - ), |
|
| 1153 | - ), |
|
| 1154 | - ),'update' => array( |
|
| 1155 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1156 | - 'httpMethod' => 'PUT', |
|
| 1157 | - 'parameters' => array( |
|
| 1158 | - 'accountId' => array( |
|
| 1159 | - 'location' => 'path', |
|
| 1160 | - 'type' => 'string', |
|
| 1161 | - 'required' => true, |
|
| 1162 | - ), |
|
| 1163 | - 'webPropertyId' => array( |
|
| 1164 | - 'location' => 'path', |
|
| 1165 | - 'type' => 'string', |
|
| 1166 | - 'required' => true, |
|
| 1167 | - ), |
|
| 1168 | - 'profileId' => array( |
|
| 1169 | - 'location' => 'path', |
|
| 1170 | - 'type' => 'string', |
|
| 1171 | - 'required' => true, |
|
| 1172 | - ), |
|
| 1173 | - 'linkId' => array( |
|
| 1174 | - 'location' => 'path', |
|
| 1175 | - 'type' => 'string', |
|
| 1176 | - 'required' => true, |
|
| 1177 | - ), |
|
| 1178 | - ), |
|
| 1179 | - ), |
|
| 1180 | - ) |
|
| 1181 | - ) |
|
| 1182 | - ); |
|
| 1183 | - $this->management_profileUserLinks = new Google_Service_Analytics_ManagementProfileUserLinks_Resource( |
|
| 1184 | - $this, |
|
| 1185 | - $this->serviceName, |
|
| 1186 | - 'profileUserLinks', |
|
| 1187 | - array( |
|
| 1188 | - 'methods' => array( |
|
| 1189 | - 'delete' => array( |
|
| 1190 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', |
|
| 1191 | - 'httpMethod' => 'DELETE', |
|
| 1192 | - 'parameters' => array( |
|
| 1193 | - 'accountId' => array( |
|
| 1194 | - 'location' => 'path', |
|
| 1195 | - 'type' => 'string', |
|
| 1196 | - 'required' => true, |
|
| 1197 | - ), |
|
| 1198 | - 'webPropertyId' => array( |
|
| 1199 | - 'location' => 'path', |
|
| 1200 | - 'type' => 'string', |
|
| 1201 | - 'required' => true, |
|
| 1202 | - ), |
|
| 1203 | - 'profileId' => array( |
|
| 1204 | - 'location' => 'path', |
|
| 1205 | - 'type' => 'string', |
|
| 1206 | - 'required' => true, |
|
| 1207 | - ), |
|
| 1208 | - 'linkId' => array( |
|
| 1209 | - 'location' => 'path', |
|
| 1210 | - 'type' => 'string', |
|
| 1211 | - 'required' => true, |
|
| 1212 | - ), |
|
| 1213 | - ), |
|
| 1214 | - ),'insert' => array( |
|
| 1215 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
|
| 1216 | - 'httpMethod' => 'POST', |
|
| 1217 | - 'parameters' => array( |
|
| 1218 | - 'accountId' => array( |
|
| 1219 | - 'location' => 'path', |
|
| 1220 | - 'type' => 'string', |
|
| 1221 | - 'required' => true, |
|
| 1222 | - ), |
|
| 1223 | - 'webPropertyId' => array( |
|
| 1224 | - 'location' => 'path', |
|
| 1225 | - 'type' => 'string', |
|
| 1226 | - 'required' => true, |
|
| 1227 | - ), |
|
| 1228 | - 'profileId' => array( |
|
| 1229 | - 'location' => 'path', |
|
| 1230 | - 'type' => 'string', |
|
| 1231 | - 'required' => true, |
|
| 1232 | - ), |
|
| 1233 | - ), |
|
| 1234 | - ),'list' => array( |
|
| 1235 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
|
| 1236 | - 'httpMethod' => 'GET', |
|
| 1237 | - 'parameters' => array( |
|
| 1238 | - 'accountId' => array( |
|
| 1239 | - 'location' => 'path', |
|
| 1240 | - 'type' => 'string', |
|
| 1241 | - 'required' => true, |
|
| 1242 | - ), |
|
| 1243 | - 'webPropertyId' => array( |
|
| 1244 | - 'location' => 'path', |
|
| 1245 | - 'type' => 'string', |
|
| 1246 | - 'required' => true, |
|
| 1247 | - ), |
|
| 1248 | - 'profileId' => array( |
|
| 1249 | - 'location' => 'path', |
|
| 1250 | - 'type' => 'string', |
|
| 1251 | - 'required' => true, |
|
| 1252 | - ), |
|
| 1253 | - 'max-results' => array( |
|
| 1254 | - 'location' => 'query', |
|
| 1255 | - 'type' => 'integer', |
|
| 1256 | - ), |
|
| 1257 | - 'start-index' => array( |
|
| 1258 | - 'location' => 'query', |
|
| 1259 | - 'type' => 'integer', |
|
| 1260 | - ), |
|
| 1261 | - ), |
|
| 1262 | - ),'update' => array( |
|
| 1263 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', |
|
| 1264 | - 'httpMethod' => 'PUT', |
|
| 1265 | - 'parameters' => array( |
|
| 1266 | - 'accountId' => array( |
|
| 1267 | - 'location' => 'path', |
|
| 1268 | - 'type' => 'string', |
|
| 1269 | - 'required' => true, |
|
| 1270 | - ), |
|
| 1271 | - 'webPropertyId' => array( |
|
| 1272 | - 'location' => 'path', |
|
| 1273 | - 'type' => 'string', |
|
| 1274 | - 'required' => true, |
|
| 1275 | - ), |
|
| 1276 | - 'profileId' => array( |
|
| 1277 | - 'location' => 'path', |
|
| 1278 | - 'type' => 'string', |
|
| 1279 | - 'required' => true, |
|
| 1280 | - ), |
|
| 1281 | - 'linkId' => array( |
|
| 1282 | - 'location' => 'path', |
|
| 1283 | - 'type' => 'string', |
|
| 1284 | - 'required' => true, |
|
| 1285 | - ), |
|
| 1286 | - ), |
|
| 1287 | - ), |
|
| 1288 | - ) |
|
| 1289 | - ) |
|
| 1290 | - ); |
|
| 1291 | - $this->management_profiles = new Google_Service_Analytics_ManagementProfiles_Resource( |
|
| 1292 | - $this, |
|
| 1293 | - $this->serviceName, |
|
| 1294 | - 'profiles', |
|
| 1295 | - array( |
|
| 1296 | - 'methods' => array( |
|
| 1297 | - 'delete' => array( |
|
| 1298 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1299 | - 'httpMethod' => 'DELETE', |
|
| 1300 | - 'parameters' => array( |
|
| 1301 | - 'accountId' => array( |
|
| 1302 | - 'location' => 'path', |
|
| 1303 | - 'type' => 'string', |
|
| 1304 | - 'required' => true, |
|
| 1305 | - ), |
|
| 1306 | - 'webPropertyId' => array( |
|
| 1307 | - 'location' => 'path', |
|
| 1308 | - 'type' => 'string', |
|
| 1309 | - 'required' => true, |
|
| 1310 | - ), |
|
| 1311 | - 'profileId' => array( |
|
| 1312 | - 'location' => 'path', |
|
| 1313 | - 'type' => 'string', |
|
| 1314 | - 'required' => true, |
|
| 1315 | - ), |
|
| 1316 | - ), |
|
| 1317 | - ),'get' => array( |
|
| 1318 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1319 | - 'httpMethod' => 'GET', |
|
| 1320 | - 'parameters' => array( |
|
| 1321 | - 'accountId' => array( |
|
| 1322 | - 'location' => 'path', |
|
| 1323 | - 'type' => 'string', |
|
| 1324 | - 'required' => true, |
|
| 1325 | - ), |
|
| 1326 | - 'webPropertyId' => array( |
|
| 1327 | - 'location' => 'path', |
|
| 1328 | - 'type' => 'string', |
|
| 1329 | - 'required' => true, |
|
| 1330 | - ), |
|
| 1331 | - 'profileId' => array( |
|
| 1332 | - 'location' => 'path', |
|
| 1333 | - 'type' => 'string', |
|
| 1334 | - 'required' => true, |
|
| 1335 | - ), |
|
| 1336 | - ), |
|
| 1337 | - ),'insert' => array( |
|
| 1338 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
|
| 1339 | - 'httpMethod' => 'POST', |
|
| 1340 | - 'parameters' => array( |
|
| 1341 | - 'accountId' => array( |
|
| 1342 | - 'location' => 'path', |
|
| 1343 | - 'type' => 'string', |
|
| 1344 | - 'required' => true, |
|
| 1345 | - ), |
|
| 1346 | - 'webPropertyId' => array( |
|
| 1347 | - 'location' => 'path', |
|
| 1348 | - 'type' => 'string', |
|
| 1349 | - 'required' => true, |
|
| 1350 | - ), |
|
| 1351 | - ), |
|
| 1352 | - ),'list' => array( |
|
| 1353 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
|
| 1354 | - 'httpMethod' => 'GET', |
|
| 1355 | - 'parameters' => array( |
|
| 1356 | - 'accountId' => array( |
|
| 1357 | - 'location' => 'path', |
|
| 1358 | - 'type' => 'string', |
|
| 1359 | - 'required' => true, |
|
| 1360 | - ), |
|
| 1361 | - 'webPropertyId' => array( |
|
| 1362 | - 'location' => 'path', |
|
| 1363 | - 'type' => 'string', |
|
| 1364 | - 'required' => true, |
|
| 1365 | - ), |
|
| 1366 | - 'max-results' => array( |
|
| 1367 | - 'location' => 'query', |
|
| 1368 | - 'type' => 'integer', |
|
| 1369 | - ), |
|
| 1370 | - 'start-index' => array( |
|
| 1371 | - 'location' => 'query', |
|
| 1372 | - 'type' => 'integer', |
|
| 1373 | - ), |
|
| 1374 | - ), |
|
| 1375 | - ),'patch' => array( |
|
| 1376 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1377 | - 'httpMethod' => 'PATCH', |
|
| 1378 | - 'parameters' => array( |
|
| 1379 | - 'accountId' => array( |
|
| 1380 | - 'location' => 'path', |
|
| 1381 | - 'type' => 'string', |
|
| 1382 | - 'required' => true, |
|
| 1383 | - ), |
|
| 1384 | - 'webPropertyId' => array( |
|
| 1385 | - 'location' => 'path', |
|
| 1386 | - 'type' => 'string', |
|
| 1387 | - 'required' => true, |
|
| 1388 | - ), |
|
| 1389 | - 'profileId' => array( |
|
| 1390 | - 'location' => 'path', |
|
| 1391 | - 'type' => 'string', |
|
| 1392 | - 'required' => true, |
|
| 1393 | - ), |
|
| 1394 | - ), |
|
| 1395 | - ),'update' => array( |
|
| 1396 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1397 | - 'httpMethod' => 'PUT', |
|
| 1398 | - 'parameters' => array( |
|
| 1399 | - 'accountId' => array( |
|
| 1400 | - 'location' => 'path', |
|
| 1401 | - 'type' => 'string', |
|
| 1402 | - 'required' => true, |
|
| 1403 | - ), |
|
| 1404 | - 'webPropertyId' => array( |
|
| 1405 | - 'location' => 'path', |
|
| 1406 | - 'type' => 'string', |
|
| 1407 | - 'required' => true, |
|
| 1408 | - ), |
|
| 1409 | - 'profileId' => array( |
|
| 1410 | - 'location' => 'path', |
|
| 1411 | - 'type' => 'string', |
|
| 1412 | - 'required' => true, |
|
| 1413 | - ), |
|
| 1414 | - ), |
|
| 1415 | - ), |
|
| 1416 | - ) |
|
| 1417 | - ) |
|
| 1418 | - ); |
|
| 1419 | - $this->management_segments = new Google_Service_Analytics_ManagementSegments_Resource( |
|
| 1420 | - $this, |
|
| 1421 | - $this->serviceName, |
|
| 1422 | - 'segments', |
|
| 1423 | - array( |
|
| 1424 | - 'methods' => array( |
|
| 1425 | - 'list' => array( |
|
| 1426 | - 'path' => 'management/segments', |
|
| 1427 | - 'httpMethod' => 'GET', |
|
| 1428 | - 'parameters' => array( |
|
| 1429 | - 'max-results' => array( |
|
| 1430 | - 'location' => 'query', |
|
| 1431 | - 'type' => 'integer', |
|
| 1432 | - ), |
|
| 1433 | - 'start-index' => array( |
|
| 1434 | - 'location' => 'query', |
|
| 1435 | - 'type' => 'integer', |
|
| 1436 | - ), |
|
| 1437 | - ), |
|
| 1438 | - ), |
|
| 1439 | - ) |
|
| 1440 | - ) |
|
| 1441 | - ); |
|
| 1442 | - $this->management_unsampledReports = new Google_Service_Analytics_ManagementUnsampledReports_Resource( |
|
| 1443 | - $this, |
|
| 1444 | - $this->serviceName, |
|
| 1445 | - 'unsampledReports', |
|
| 1446 | - array( |
|
| 1447 | - 'methods' => array( |
|
| 1448 | - 'get' => array( |
|
| 1449 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}', |
|
| 1450 | - 'httpMethod' => 'GET', |
|
| 1451 | - 'parameters' => array( |
|
| 1452 | - 'accountId' => array( |
|
| 1453 | - 'location' => 'path', |
|
| 1454 | - 'type' => 'string', |
|
| 1455 | - 'required' => true, |
|
| 1456 | - ), |
|
| 1457 | - 'webPropertyId' => array( |
|
| 1458 | - 'location' => 'path', |
|
| 1459 | - 'type' => 'string', |
|
| 1460 | - 'required' => true, |
|
| 1461 | - ), |
|
| 1462 | - 'profileId' => array( |
|
| 1463 | - 'location' => 'path', |
|
| 1464 | - 'type' => 'string', |
|
| 1465 | - 'required' => true, |
|
| 1466 | - ), |
|
| 1467 | - 'unsampledReportId' => array( |
|
| 1468 | - 'location' => 'path', |
|
| 1469 | - 'type' => 'string', |
|
| 1470 | - 'required' => true, |
|
| 1471 | - ), |
|
| 1472 | - ), |
|
| 1473 | - ),'insert' => array( |
|
| 1474 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
|
| 1475 | - 'httpMethod' => 'POST', |
|
| 1476 | - 'parameters' => array( |
|
| 1477 | - 'accountId' => array( |
|
| 1478 | - 'location' => 'path', |
|
| 1479 | - 'type' => 'string', |
|
| 1480 | - 'required' => true, |
|
| 1481 | - ), |
|
| 1482 | - 'webPropertyId' => array( |
|
| 1483 | - 'location' => 'path', |
|
| 1484 | - 'type' => 'string', |
|
| 1485 | - 'required' => true, |
|
| 1486 | - ), |
|
| 1487 | - 'profileId' => array( |
|
| 1488 | - 'location' => 'path', |
|
| 1489 | - 'type' => 'string', |
|
| 1490 | - 'required' => true, |
|
| 1491 | - ), |
|
| 1492 | - ), |
|
| 1493 | - ),'list' => array( |
|
| 1494 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
|
| 1495 | - 'httpMethod' => 'GET', |
|
| 1496 | - 'parameters' => array( |
|
| 1497 | - 'accountId' => array( |
|
| 1498 | - 'location' => 'path', |
|
| 1499 | - 'type' => 'string', |
|
| 1500 | - 'required' => true, |
|
| 1501 | - ), |
|
| 1502 | - 'webPropertyId' => array( |
|
| 1503 | - 'location' => 'path', |
|
| 1504 | - 'type' => 'string', |
|
| 1505 | - 'required' => true, |
|
| 1506 | - ), |
|
| 1507 | - 'profileId' => array( |
|
| 1508 | - 'location' => 'path', |
|
| 1509 | - 'type' => 'string', |
|
| 1510 | - 'required' => true, |
|
| 1511 | - ), |
|
| 1512 | - 'max-results' => array( |
|
| 1513 | - 'location' => 'query', |
|
| 1514 | - 'type' => 'integer', |
|
| 1515 | - ), |
|
| 1516 | - 'start-index' => array( |
|
| 1517 | - 'location' => 'query', |
|
| 1518 | - 'type' => 'integer', |
|
| 1519 | - ), |
|
| 1520 | - ), |
|
| 1521 | - ), |
|
| 1522 | - ) |
|
| 1523 | - ) |
|
| 1524 | - ); |
|
| 1525 | - $this->management_uploads = new Google_Service_Analytics_ManagementUploads_Resource( |
|
| 1526 | - $this, |
|
| 1527 | - $this->serviceName, |
|
| 1528 | - 'uploads', |
|
| 1529 | - array( |
|
| 1530 | - 'methods' => array( |
|
| 1531 | - 'deleteUploadData' => array( |
|
| 1532 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData', |
|
| 1533 | - 'httpMethod' => 'POST', |
|
| 1534 | - 'parameters' => array( |
|
| 1535 | - 'accountId' => array( |
|
| 1536 | - 'location' => 'path', |
|
| 1537 | - 'type' => 'string', |
|
| 1538 | - 'required' => true, |
|
| 1539 | - ), |
|
| 1540 | - 'webPropertyId' => array( |
|
| 1541 | - 'location' => 'path', |
|
| 1542 | - 'type' => 'string', |
|
| 1543 | - 'required' => true, |
|
| 1544 | - ), |
|
| 1545 | - 'customDataSourceId' => array( |
|
| 1546 | - 'location' => 'path', |
|
| 1547 | - 'type' => 'string', |
|
| 1548 | - 'required' => true, |
|
| 1549 | - ), |
|
| 1550 | - ), |
|
| 1551 | - ),'get' => array( |
|
| 1552 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}', |
|
| 1553 | - 'httpMethod' => 'GET', |
|
| 1554 | - 'parameters' => array( |
|
| 1555 | - 'accountId' => array( |
|
| 1556 | - 'location' => 'path', |
|
| 1557 | - 'type' => 'string', |
|
| 1558 | - 'required' => true, |
|
| 1559 | - ), |
|
| 1560 | - 'webPropertyId' => array( |
|
| 1561 | - 'location' => 'path', |
|
| 1562 | - 'type' => 'string', |
|
| 1563 | - 'required' => true, |
|
| 1564 | - ), |
|
| 1565 | - 'customDataSourceId' => array( |
|
| 1566 | - 'location' => 'path', |
|
| 1567 | - 'type' => 'string', |
|
| 1568 | - 'required' => true, |
|
| 1569 | - ), |
|
| 1570 | - 'uploadId' => array( |
|
| 1571 | - 'location' => 'path', |
|
| 1572 | - 'type' => 'string', |
|
| 1573 | - 'required' => true, |
|
| 1574 | - ), |
|
| 1575 | - ), |
|
| 1576 | - ),'list' => array( |
|
| 1577 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
|
| 1578 | - 'httpMethod' => 'GET', |
|
| 1579 | - 'parameters' => array( |
|
| 1580 | - 'accountId' => array( |
|
| 1581 | - 'location' => 'path', |
|
| 1582 | - 'type' => 'string', |
|
| 1583 | - 'required' => true, |
|
| 1584 | - ), |
|
| 1585 | - 'webPropertyId' => array( |
|
| 1586 | - 'location' => 'path', |
|
| 1587 | - 'type' => 'string', |
|
| 1588 | - 'required' => true, |
|
| 1589 | - ), |
|
| 1590 | - 'customDataSourceId' => array( |
|
| 1591 | - 'location' => 'path', |
|
| 1592 | - 'type' => 'string', |
|
| 1593 | - 'required' => true, |
|
| 1594 | - ), |
|
| 1595 | - 'max-results' => array( |
|
| 1596 | - 'location' => 'query', |
|
| 1597 | - 'type' => 'integer', |
|
| 1598 | - ), |
|
| 1599 | - 'start-index' => array( |
|
| 1600 | - 'location' => 'query', |
|
| 1601 | - 'type' => 'integer', |
|
| 1602 | - ), |
|
| 1603 | - ), |
|
| 1604 | - ),'uploadData' => array( |
|
| 1605 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
|
| 1606 | - 'httpMethod' => 'POST', |
|
| 1607 | - 'parameters' => array( |
|
| 1608 | - 'accountId' => array( |
|
| 1609 | - 'location' => 'path', |
|
| 1610 | - 'type' => 'string', |
|
| 1611 | - 'required' => true, |
|
| 1612 | - ), |
|
| 1613 | - 'webPropertyId' => array( |
|
| 1614 | - 'location' => 'path', |
|
| 1615 | - 'type' => 'string', |
|
| 1616 | - 'required' => true, |
|
| 1617 | - ), |
|
| 1618 | - 'customDataSourceId' => array( |
|
| 1619 | - 'location' => 'path', |
|
| 1620 | - 'type' => 'string', |
|
| 1621 | - 'required' => true, |
|
| 1622 | - ), |
|
| 1623 | - ), |
|
| 1624 | - ), |
|
| 1625 | - ) |
|
| 1626 | - ) |
|
| 1627 | - ); |
|
| 1628 | - $this->management_webPropertyAdWordsLinks = new Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource( |
|
| 1629 | - $this, |
|
| 1630 | - $this->serviceName, |
|
| 1631 | - 'webPropertyAdWordsLinks', |
|
| 1632 | - array( |
|
| 1633 | - 'methods' => array( |
|
| 1634 | - 'delete' => array( |
|
| 1635 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1636 | - 'httpMethod' => 'DELETE', |
|
| 1637 | - 'parameters' => array( |
|
| 1638 | - 'accountId' => array( |
|
| 1639 | - 'location' => 'path', |
|
| 1640 | - 'type' => 'string', |
|
| 1641 | - 'required' => true, |
|
| 1642 | - ), |
|
| 1643 | - 'webPropertyId' => array( |
|
| 1644 | - 'location' => 'path', |
|
| 1645 | - 'type' => 'string', |
|
| 1646 | - 'required' => true, |
|
| 1647 | - ), |
|
| 1648 | - 'webPropertyAdWordsLinkId' => array( |
|
| 1649 | - 'location' => 'path', |
|
| 1650 | - 'type' => 'string', |
|
| 1651 | - 'required' => true, |
|
| 1652 | - ), |
|
| 1653 | - ), |
|
| 1654 | - ),'get' => array( |
|
| 1655 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1656 | - 'httpMethod' => 'GET', |
|
| 1657 | - 'parameters' => array( |
|
| 1658 | - 'accountId' => array( |
|
| 1659 | - 'location' => 'path', |
|
| 1660 | - 'type' => 'string', |
|
| 1661 | - 'required' => true, |
|
| 1662 | - ), |
|
| 1663 | - 'webPropertyId' => array( |
|
| 1664 | - 'location' => 'path', |
|
| 1665 | - 'type' => 'string', |
|
| 1666 | - 'required' => true, |
|
| 1667 | - ), |
|
| 1668 | - 'webPropertyAdWordsLinkId' => array( |
|
| 1669 | - 'location' => 'path', |
|
| 1670 | - 'type' => 'string', |
|
| 1671 | - 'required' => true, |
|
| 1672 | - ), |
|
| 1673 | - ), |
|
| 1674 | - ),'insert' => array( |
|
| 1675 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
|
| 1676 | - 'httpMethod' => 'POST', |
|
| 1677 | - 'parameters' => array( |
|
| 1678 | - 'accountId' => array( |
|
| 1679 | - 'location' => 'path', |
|
| 1680 | - 'type' => 'string', |
|
| 1681 | - 'required' => true, |
|
| 1682 | - ), |
|
| 1683 | - 'webPropertyId' => array( |
|
| 1684 | - 'location' => 'path', |
|
| 1685 | - 'type' => 'string', |
|
| 1686 | - 'required' => true, |
|
| 1687 | - ), |
|
| 1688 | - ), |
|
| 1689 | - ),'list' => array( |
|
| 1690 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
|
| 1691 | - 'httpMethod' => 'GET', |
|
| 1692 | - 'parameters' => array( |
|
| 1693 | - 'accountId' => array( |
|
| 1694 | - 'location' => 'path', |
|
| 1695 | - 'type' => 'string', |
|
| 1696 | - 'required' => true, |
|
| 1697 | - ), |
|
| 1698 | - 'webPropertyId' => array( |
|
| 1699 | - 'location' => 'path', |
|
| 1700 | - 'type' => 'string', |
|
| 1701 | - 'required' => true, |
|
| 1702 | - ), |
|
| 1703 | - 'max-results' => array( |
|
| 1704 | - 'location' => 'query', |
|
| 1705 | - 'type' => 'integer', |
|
| 1706 | - ), |
|
| 1707 | - 'start-index' => array( |
|
| 1708 | - 'location' => 'query', |
|
| 1709 | - 'type' => 'integer', |
|
| 1710 | - ), |
|
| 1711 | - ), |
|
| 1712 | - ),'patch' => array( |
|
| 1713 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1714 | - 'httpMethod' => 'PATCH', |
|
| 1715 | - 'parameters' => array( |
|
| 1716 | - 'accountId' => array( |
|
| 1717 | - 'location' => 'path', |
|
| 1718 | - 'type' => 'string', |
|
| 1719 | - 'required' => true, |
|
| 1720 | - ), |
|
| 1721 | - 'webPropertyId' => array( |
|
| 1722 | - 'location' => 'path', |
|
| 1723 | - 'type' => 'string', |
|
| 1724 | - 'required' => true, |
|
| 1725 | - ), |
|
| 1726 | - 'webPropertyAdWordsLinkId' => array( |
|
| 1727 | - 'location' => 'path', |
|
| 1728 | - 'type' => 'string', |
|
| 1729 | - 'required' => true, |
|
| 1730 | - ), |
|
| 1731 | - ), |
|
| 1732 | - ),'update' => array( |
|
| 1733 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1734 | - 'httpMethod' => 'PUT', |
|
| 1735 | - 'parameters' => array( |
|
| 1736 | - 'accountId' => array( |
|
| 1737 | - 'location' => 'path', |
|
| 1738 | - 'type' => 'string', |
|
| 1739 | - 'required' => true, |
|
| 1740 | - ), |
|
| 1741 | - 'webPropertyId' => array( |
|
| 1742 | - 'location' => 'path', |
|
| 1743 | - 'type' => 'string', |
|
| 1744 | - 'required' => true, |
|
| 1745 | - ), |
|
| 1746 | - 'webPropertyAdWordsLinkId' => array( |
|
| 1747 | - 'location' => 'path', |
|
| 1748 | - 'type' => 'string', |
|
| 1749 | - 'required' => true, |
|
| 1750 | - ), |
|
| 1751 | - ), |
|
| 1752 | - ), |
|
| 1753 | - ) |
|
| 1754 | - ) |
|
| 1755 | - ); |
|
| 1756 | - $this->management_webproperties = new Google_Service_Analytics_ManagementWebproperties_Resource( |
|
| 1757 | - $this, |
|
| 1758 | - $this->serviceName, |
|
| 1759 | - 'webproperties', |
|
| 1760 | - array( |
|
| 1761 | - 'methods' => array( |
|
| 1762 | - 'get' => array( |
|
| 1763 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1764 | - 'httpMethod' => 'GET', |
|
| 1765 | - 'parameters' => array( |
|
| 1766 | - 'accountId' => array( |
|
| 1767 | - 'location' => 'path', |
|
| 1768 | - 'type' => 'string', |
|
| 1769 | - 'required' => true, |
|
| 1770 | - ), |
|
| 1771 | - 'webPropertyId' => array( |
|
| 1772 | - 'location' => 'path', |
|
| 1773 | - 'type' => 'string', |
|
| 1774 | - 'required' => true, |
|
| 1775 | - ), |
|
| 1776 | - ), |
|
| 1777 | - ),'insert' => array( |
|
| 1778 | - 'path' => 'management/accounts/{accountId}/webproperties', |
|
| 1779 | - 'httpMethod' => 'POST', |
|
| 1780 | - 'parameters' => array( |
|
| 1781 | - 'accountId' => array( |
|
| 1782 | - 'location' => 'path', |
|
| 1783 | - 'type' => 'string', |
|
| 1784 | - 'required' => true, |
|
| 1785 | - ), |
|
| 1786 | - ), |
|
| 1787 | - ),'list' => array( |
|
| 1788 | - 'path' => 'management/accounts/{accountId}/webproperties', |
|
| 1789 | - 'httpMethod' => 'GET', |
|
| 1790 | - 'parameters' => array( |
|
| 1791 | - 'accountId' => array( |
|
| 1792 | - 'location' => 'path', |
|
| 1793 | - 'type' => 'string', |
|
| 1794 | - 'required' => true, |
|
| 1795 | - ), |
|
| 1796 | - 'max-results' => array( |
|
| 1797 | - 'location' => 'query', |
|
| 1798 | - 'type' => 'integer', |
|
| 1799 | - ), |
|
| 1800 | - 'start-index' => array( |
|
| 1801 | - 'location' => 'query', |
|
| 1802 | - 'type' => 'integer', |
|
| 1803 | - ), |
|
| 1804 | - ), |
|
| 1805 | - ),'patch' => array( |
|
| 1806 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1807 | - 'httpMethod' => 'PATCH', |
|
| 1808 | - 'parameters' => array( |
|
| 1809 | - 'accountId' => array( |
|
| 1810 | - 'location' => 'path', |
|
| 1811 | - 'type' => 'string', |
|
| 1812 | - 'required' => true, |
|
| 1813 | - ), |
|
| 1814 | - 'webPropertyId' => array( |
|
| 1815 | - 'location' => 'path', |
|
| 1816 | - 'type' => 'string', |
|
| 1817 | - 'required' => true, |
|
| 1818 | - ), |
|
| 1819 | - ), |
|
| 1820 | - ),'update' => array( |
|
| 1821 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1822 | - 'httpMethod' => 'PUT', |
|
| 1823 | - 'parameters' => array( |
|
| 1824 | - 'accountId' => array( |
|
| 1825 | - 'location' => 'path', |
|
| 1826 | - 'type' => 'string', |
|
| 1827 | - 'required' => true, |
|
| 1828 | - ), |
|
| 1829 | - 'webPropertyId' => array( |
|
| 1830 | - 'location' => 'path', |
|
| 1831 | - 'type' => 'string', |
|
| 1832 | - 'required' => true, |
|
| 1833 | - ), |
|
| 1834 | - ), |
|
| 1835 | - ), |
|
| 1836 | - ) |
|
| 1837 | - ) |
|
| 1838 | - ); |
|
| 1839 | - $this->management_webpropertyUserLinks = new Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource( |
|
| 1840 | - $this, |
|
| 1841 | - $this->serviceName, |
|
| 1842 | - 'webpropertyUserLinks', |
|
| 1843 | - array( |
|
| 1844 | - 'methods' => array( |
|
| 1845 | - 'delete' => array( |
|
| 1846 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', |
|
| 1847 | - 'httpMethod' => 'DELETE', |
|
| 1848 | - 'parameters' => array( |
|
| 1849 | - 'accountId' => array( |
|
| 1850 | - 'location' => 'path', |
|
| 1851 | - 'type' => 'string', |
|
| 1852 | - 'required' => true, |
|
| 1853 | - ), |
|
| 1854 | - 'webPropertyId' => array( |
|
| 1855 | - 'location' => 'path', |
|
| 1856 | - 'type' => 'string', |
|
| 1857 | - 'required' => true, |
|
| 1858 | - ), |
|
| 1859 | - 'linkId' => array( |
|
| 1860 | - 'location' => 'path', |
|
| 1861 | - 'type' => 'string', |
|
| 1862 | - 'required' => true, |
|
| 1863 | - ), |
|
| 1864 | - ), |
|
| 1865 | - ),'insert' => array( |
|
| 1866 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
|
| 1867 | - 'httpMethod' => 'POST', |
|
| 1868 | - 'parameters' => array( |
|
| 1869 | - 'accountId' => array( |
|
| 1870 | - 'location' => 'path', |
|
| 1871 | - 'type' => 'string', |
|
| 1872 | - 'required' => true, |
|
| 1873 | - ), |
|
| 1874 | - 'webPropertyId' => array( |
|
| 1875 | - 'location' => 'path', |
|
| 1876 | - 'type' => 'string', |
|
| 1877 | - 'required' => true, |
|
| 1878 | - ), |
|
| 1879 | - ), |
|
| 1880 | - ),'list' => array( |
|
| 1881 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
|
| 1882 | - 'httpMethod' => 'GET', |
|
| 1883 | - 'parameters' => array( |
|
| 1884 | - 'accountId' => array( |
|
| 1885 | - 'location' => 'path', |
|
| 1886 | - 'type' => 'string', |
|
| 1887 | - 'required' => true, |
|
| 1888 | - ), |
|
| 1889 | - 'webPropertyId' => array( |
|
| 1890 | - 'location' => 'path', |
|
| 1891 | - 'type' => 'string', |
|
| 1892 | - 'required' => true, |
|
| 1893 | - ), |
|
| 1894 | - 'max-results' => array( |
|
| 1895 | - 'location' => 'query', |
|
| 1896 | - 'type' => 'integer', |
|
| 1897 | - ), |
|
| 1898 | - 'start-index' => array( |
|
| 1899 | - 'location' => 'query', |
|
| 1900 | - 'type' => 'integer', |
|
| 1901 | - ), |
|
| 1902 | - ), |
|
| 1903 | - ),'update' => array( |
|
| 1904 | - 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', |
|
| 1905 | - 'httpMethod' => 'PUT', |
|
| 1906 | - 'parameters' => array( |
|
| 1907 | - 'accountId' => array( |
|
| 1908 | - 'location' => 'path', |
|
| 1909 | - 'type' => 'string', |
|
| 1910 | - 'required' => true, |
|
| 1911 | - ), |
|
| 1912 | - 'webPropertyId' => array( |
|
| 1913 | - 'location' => 'path', |
|
| 1914 | - 'type' => 'string', |
|
| 1915 | - 'required' => true, |
|
| 1916 | - ), |
|
| 1917 | - 'linkId' => array( |
|
| 1918 | - 'location' => 'path', |
|
| 1919 | - 'type' => 'string', |
|
| 1920 | - 'required' => true, |
|
| 1921 | - ), |
|
| 1922 | - ), |
|
| 1923 | - ), |
|
| 1924 | - ) |
|
| 1925 | - ) |
|
| 1926 | - ); |
|
| 1927 | - $this->metadata_columns = new Google_Service_Analytics_MetadataColumns_Resource( |
|
| 1928 | - $this, |
|
| 1929 | - $this->serviceName, |
|
| 1930 | - 'columns', |
|
| 1931 | - array( |
|
| 1932 | - 'methods' => array( |
|
| 1933 | - 'list' => array( |
|
| 1934 | - 'path' => 'metadata/{reportType}/columns', |
|
| 1935 | - 'httpMethod' => 'GET', |
|
| 1936 | - 'parameters' => array( |
|
| 1937 | - 'reportType' => array( |
|
| 1938 | - 'location' => 'path', |
|
| 1939 | - 'type' => 'string', |
|
| 1940 | - 'required' => true, |
|
| 1941 | - ), |
|
| 1942 | - ), |
|
| 1943 | - ), |
|
| 1944 | - ) |
|
| 1945 | - ) |
|
| 1946 | - ); |
|
| 1947 | - $this->provisioning = new Google_Service_Analytics_Provisioning_Resource( |
|
| 1948 | - $this, |
|
| 1949 | - $this->serviceName, |
|
| 1950 | - 'provisioning', |
|
| 1951 | - array( |
|
| 1952 | - 'methods' => array( |
|
| 1953 | - 'createAccountTicket' => array( |
|
| 1954 | - 'path' => 'provisioning/createAccountTicket', |
|
| 1955 | - 'httpMethod' => 'POST', |
|
| 1956 | - 'parameters' => array(), |
|
| 1957 | - ), |
|
| 1958 | - ) |
|
| 1959 | - ) |
|
| 1960 | - ); |
|
| 84 | + parent::__construct($client); |
|
| 85 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 86 | + $this->servicePath = 'analytics/v3/'; |
|
| 87 | + $this->version = 'v3'; |
|
| 88 | + $this->serviceName = 'analytics'; |
|
| 89 | + |
|
| 90 | + $this->data_ga = new Google_Service_Analytics_DataGa_Resource( |
|
| 91 | + $this, |
|
| 92 | + $this->serviceName, |
|
| 93 | + 'ga', |
|
| 94 | + array( |
|
| 95 | + 'methods' => array( |
|
| 96 | + 'get' => array( |
|
| 97 | + 'path' => 'data/ga', |
|
| 98 | + 'httpMethod' => 'GET', |
|
| 99 | + 'parameters' => array( |
|
| 100 | + 'ids' => array( |
|
| 101 | + 'location' => 'query', |
|
| 102 | + 'type' => 'string', |
|
| 103 | + 'required' => true, |
|
| 104 | + ), |
|
| 105 | + 'start-date' => array( |
|
| 106 | + 'location' => 'query', |
|
| 107 | + 'type' => 'string', |
|
| 108 | + 'required' => true, |
|
| 109 | + ), |
|
| 110 | + 'end-date' => array( |
|
| 111 | + 'location' => 'query', |
|
| 112 | + 'type' => 'string', |
|
| 113 | + 'required' => true, |
|
| 114 | + ), |
|
| 115 | + 'metrics' => array( |
|
| 116 | + 'location' => 'query', |
|
| 117 | + 'type' => 'string', |
|
| 118 | + 'required' => true, |
|
| 119 | + ), |
|
| 120 | + 'max-results' => array( |
|
| 121 | + 'location' => 'query', |
|
| 122 | + 'type' => 'integer', |
|
| 123 | + ), |
|
| 124 | + 'sort' => array( |
|
| 125 | + 'location' => 'query', |
|
| 126 | + 'type' => 'string', |
|
| 127 | + ), |
|
| 128 | + 'dimensions' => array( |
|
| 129 | + 'location' => 'query', |
|
| 130 | + 'type' => 'string', |
|
| 131 | + ), |
|
| 132 | + 'start-index' => array( |
|
| 133 | + 'location' => 'query', |
|
| 134 | + 'type' => 'integer', |
|
| 135 | + ), |
|
| 136 | + 'segment' => array( |
|
| 137 | + 'location' => 'query', |
|
| 138 | + 'type' => 'string', |
|
| 139 | + ), |
|
| 140 | + 'samplingLevel' => array( |
|
| 141 | + 'location' => 'query', |
|
| 142 | + 'type' => 'string', |
|
| 143 | + ), |
|
| 144 | + 'filters' => array( |
|
| 145 | + 'location' => 'query', |
|
| 146 | + 'type' => 'string', |
|
| 147 | + ), |
|
| 148 | + 'output' => array( |
|
| 149 | + 'location' => 'query', |
|
| 150 | + 'type' => 'string', |
|
| 151 | + ), |
|
| 152 | + ), |
|
| 153 | + ), |
|
| 154 | + ) |
|
| 155 | + ) |
|
| 156 | + ); |
|
| 157 | + $this->data_mcf = new Google_Service_Analytics_DataMcf_Resource( |
|
| 158 | + $this, |
|
| 159 | + $this->serviceName, |
|
| 160 | + 'mcf', |
|
| 161 | + array( |
|
| 162 | + 'methods' => array( |
|
| 163 | + 'get' => array( |
|
| 164 | + 'path' => 'data/mcf', |
|
| 165 | + 'httpMethod' => 'GET', |
|
| 166 | + 'parameters' => array( |
|
| 167 | + 'ids' => array( |
|
| 168 | + 'location' => 'query', |
|
| 169 | + 'type' => 'string', |
|
| 170 | + 'required' => true, |
|
| 171 | + ), |
|
| 172 | + 'start-date' => array( |
|
| 173 | + 'location' => 'query', |
|
| 174 | + 'type' => 'string', |
|
| 175 | + 'required' => true, |
|
| 176 | + ), |
|
| 177 | + 'end-date' => array( |
|
| 178 | + 'location' => 'query', |
|
| 179 | + 'type' => 'string', |
|
| 180 | + 'required' => true, |
|
| 181 | + ), |
|
| 182 | + 'metrics' => array( |
|
| 183 | + 'location' => 'query', |
|
| 184 | + 'type' => 'string', |
|
| 185 | + 'required' => true, |
|
| 186 | + ), |
|
| 187 | + 'max-results' => array( |
|
| 188 | + 'location' => 'query', |
|
| 189 | + 'type' => 'integer', |
|
| 190 | + ), |
|
| 191 | + 'sort' => array( |
|
| 192 | + 'location' => 'query', |
|
| 193 | + 'type' => 'string', |
|
| 194 | + ), |
|
| 195 | + 'dimensions' => array( |
|
| 196 | + 'location' => 'query', |
|
| 197 | + 'type' => 'string', |
|
| 198 | + ), |
|
| 199 | + 'start-index' => array( |
|
| 200 | + 'location' => 'query', |
|
| 201 | + 'type' => 'integer', |
|
| 202 | + ), |
|
| 203 | + 'samplingLevel' => array( |
|
| 204 | + 'location' => 'query', |
|
| 205 | + 'type' => 'string', |
|
| 206 | + ), |
|
| 207 | + 'filters' => array( |
|
| 208 | + 'location' => 'query', |
|
| 209 | + 'type' => 'string', |
|
| 210 | + ), |
|
| 211 | + ), |
|
| 212 | + ), |
|
| 213 | + ) |
|
| 214 | + ) |
|
| 215 | + ); |
|
| 216 | + $this->data_realtime = new Google_Service_Analytics_DataRealtime_Resource( |
|
| 217 | + $this, |
|
| 218 | + $this->serviceName, |
|
| 219 | + 'realtime', |
|
| 220 | + array( |
|
| 221 | + 'methods' => array( |
|
| 222 | + 'get' => array( |
|
| 223 | + 'path' => 'data/realtime', |
|
| 224 | + 'httpMethod' => 'GET', |
|
| 225 | + 'parameters' => array( |
|
| 226 | + 'ids' => array( |
|
| 227 | + 'location' => 'query', |
|
| 228 | + 'type' => 'string', |
|
| 229 | + 'required' => true, |
|
| 230 | + ), |
|
| 231 | + 'metrics' => array( |
|
| 232 | + 'location' => 'query', |
|
| 233 | + 'type' => 'string', |
|
| 234 | + 'required' => true, |
|
| 235 | + ), |
|
| 236 | + 'max-results' => array( |
|
| 237 | + 'location' => 'query', |
|
| 238 | + 'type' => 'integer', |
|
| 239 | + ), |
|
| 240 | + 'sort' => array( |
|
| 241 | + 'location' => 'query', |
|
| 242 | + 'type' => 'string', |
|
| 243 | + ), |
|
| 244 | + 'dimensions' => array( |
|
| 245 | + 'location' => 'query', |
|
| 246 | + 'type' => 'string', |
|
| 247 | + ), |
|
| 248 | + 'filters' => array( |
|
| 249 | + 'location' => 'query', |
|
| 250 | + 'type' => 'string', |
|
| 251 | + ), |
|
| 252 | + ), |
|
| 253 | + ), |
|
| 254 | + ) |
|
| 255 | + ) |
|
| 256 | + ); |
|
| 257 | + $this->management_accountSummaries = new Google_Service_Analytics_ManagementAccountSummaries_Resource( |
|
| 258 | + $this, |
|
| 259 | + $this->serviceName, |
|
| 260 | + 'accountSummaries', |
|
| 261 | + array( |
|
| 262 | + 'methods' => array( |
|
| 263 | + 'list' => array( |
|
| 264 | + 'path' => 'management/accountSummaries', |
|
| 265 | + 'httpMethod' => 'GET', |
|
| 266 | + 'parameters' => array( |
|
| 267 | + 'max-results' => array( |
|
| 268 | + 'location' => 'query', |
|
| 269 | + 'type' => 'integer', |
|
| 270 | + ), |
|
| 271 | + 'start-index' => array( |
|
| 272 | + 'location' => 'query', |
|
| 273 | + 'type' => 'integer', |
|
| 274 | + ), |
|
| 275 | + ), |
|
| 276 | + ), |
|
| 277 | + ) |
|
| 278 | + ) |
|
| 279 | + ); |
|
| 280 | + $this->management_accountUserLinks = new Google_Service_Analytics_ManagementAccountUserLinks_Resource( |
|
| 281 | + $this, |
|
| 282 | + $this->serviceName, |
|
| 283 | + 'accountUserLinks', |
|
| 284 | + array( |
|
| 285 | + 'methods' => array( |
|
| 286 | + 'delete' => array( |
|
| 287 | + 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', |
|
| 288 | + 'httpMethod' => 'DELETE', |
|
| 289 | + 'parameters' => array( |
|
| 290 | + 'accountId' => array( |
|
| 291 | + 'location' => 'path', |
|
| 292 | + 'type' => 'string', |
|
| 293 | + 'required' => true, |
|
| 294 | + ), |
|
| 295 | + 'linkId' => array( |
|
| 296 | + 'location' => 'path', |
|
| 297 | + 'type' => 'string', |
|
| 298 | + 'required' => true, |
|
| 299 | + ), |
|
| 300 | + ), |
|
| 301 | + ),'insert' => array( |
|
| 302 | + 'path' => 'management/accounts/{accountId}/entityUserLinks', |
|
| 303 | + 'httpMethod' => 'POST', |
|
| 304 | + 'parameters' => array( |
|
| 305 | + 'accountId' => array( |
|
| 306 | + 'location' => 'path', |
|
| 307 | + 'type' => 'string', |
|
| 308 | + 'required' => true, |
|
| 309 | + ), |
|
| 310 | + ), |
|
| 311 | + ),'list' => array( |
|
| 312 | + 'path' => 'management/accounts/{accountId}/entityUserLinks', |
|
| 313 | + 'httpMethod' => 'GET', |
|
| 314 | + 'parameters' => array( |
|
| 315 | + 'accountId' => array( |
|
| 316 | + 'location' => 'path', |
|
| 317 | + 'type' => 'string', |
|
| 318 | + 'required' => true, |
|
| 319 | + ), |
|
| 320 | + 'max-results' => array( |
|
| 321 | + 'location' => 'query', |
|
| 322 | + 'type' => 'integer', |
|
| 323 | + ), |
|
| 324 | + 'start-index' => array( |
|
| 325 | + 'location' => 'query', |
|
| 326 | + 'type' => 'integer', |
|
| 327 | + ), |
|
| 328 | + ), |
|
| 329 | + ),'update' => array( |
|
| 330 | + 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', |
|
| 331 | + 'httpMethod' => 'PUT', |
|
| 332 | + 'parameters' => array( |
|
| 333 | + 'accountId' => array( |
|
| 334 | + 'location' => 'path', |
|
| 335 | + 'type' => 'string', |
|
| 336 | + 'required' => true, |
|
| 337 | + ), |
|
| 338 | + 'linkId' => array( |
|
| 339 | + 'location' => 'path', |
|
| 340 | + 'type' => 'string', |
|
| 341 | + 'required' => true, |
|
| 342 | + ), |
|
| 343 | + ), |
|
| 344 | + ), |
|
| 345 | + ) |
|
| 346 | + ) |
|
| 347 | + ); |
|
| 348 | + $this->management_accounts = new Google_Service_Analytics_ManagementAccounts_Resource( |
|
| 349 | + $this, |
|
| 350 | + $this->serviceName, |
|
| 351 | + 'accounts', |
|
| 352 | + array( |
|
| 353 | + 'methods' => array( |
|
| 354 | + 'list' => array( |
|
| 355 | + 'path' => 'management/accounts', |
|
| 356 | + 'httpMethod' => 'GET', |
|
| 357 | + 'parameters' => array( |
|
| 358 | + 'max-results' => array( |
|
| 359 | + 'location' => 'query', |
|
| 360 | + 'type' => 'integer', |
|
| 361 | + ), |
|
| 362 | + 'start-index' => array( |
|
| 363 | + 'location' => 'query', |
|
| 364 | + 'type' => 'integer', |
|
| 365 | + ), |
|
| 366 | + ), |
|
| 367 | + ), |
|
| 368 | + ) |
|
| 369 | + ) |
|
| 370 | + ); |
|
| 371 | + $this->management_customDataSources = new Google_Service_Analytics_ManagementCustomDataSources_Resource( |
|
| 372 | + $this, |
|
| 373 | + $this->serviceName, |
|
| 374 | + 'customDataSources', |
|
| 375 | + array( |
|
| 376 | + 'methods' => array( |
|
| 377 | + 'list' => array( |
|
| 378 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources', |
|
| 379 | + 'httpMethod' => 'GET', |
|
| 380 | + 'parameters' => array( |
|
| 381 | + 'accountId' => array( |
|
| 382 | + 'location' => 'path', |
|
| 383 | + 'type' => 'string', |
|
| 384 | + 'required' => true, |
|
| 385 | + ), |
|
| 386 | + 'webPropertyId' => array( |
|
| 387 | + 'location' => 'path', |
|
| 388 | + 'type' => 'string', |
|
| 389 | + 'required' => true, |
|
| 390 | + ), |
|
| 391 | + 'max-results' => array( |
|
| 392 | + 'location' => 'query', |
|
| 393 | + 'type' => 'integer', |
|
| 394 | + ), |
|
| 395 | + 'start-index' => array( |
|
| 396 | + 'location' => 'query', |
|
| 397 | + 'type' => 'integer', |
|
| 398 | + ), |
|
| 399 | + ), |
|
| 400 | + ), |
|
| 401 | + ) |
|
| 402 | + ) |
|
| 403 | + ); |
|
| 404 | + $this->management_customDimensions = new Google_Service_Analytics_ManagementCustomDimensions_Resource( |
|
| 405 | + $this, |
|
| 406 | + $this->serviceName, |
|
| 407 | + 'customDimensions', |
|
| 408 | + array( |
|
| 409 | + 'methods' => array( |
|
| 410 | + 'get' => array( |
|
| 411 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 412 | + 'httpMethod' => 'GET', |
|
| 413 | + 'parameters' => array( |
|
| 414 | + 'accountId' => array( |
|
| 415 | + 'location' => 'path', |
|
| 416 | + 'type' => 'string', |
|
| 417 | + 'required' => true, |
|
| 418 | + ), |
|
| 419 | + 'webPropertyId' => array( |
|
| 420 | + 'location' => 'path', |
|
| 421 | + 'type' => 'string', |
|
| 422 | + 'required' => true, |
|
| 423 | + ), |
|
| 424 | + 'customDimensionId' => array( |
|
| 425 | + 'location' => 'path', |
|
| 426 | + 'type' => 'string', |
|
| 427 | + 'required' => true, |
|
| 428 | + ), |
|
| 429 | + ), |
|
| 430 | + ),'insert' => array( |
|
| 431 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
|
| 432 | + 'httpMethod' => 'POST', |
|
| 433 | + 'parameters' => array( |
|
| 434 | + 'accountId' => array( |
|
| 435 | + 'location' => 'path', |
|
| 436 | + 'type' => 'string', |
|
| 437 | + 'required' => true, |
|
| 438 | + ), |
|
| 439 | + 'webPropertyId' => array( |
|
| 440 | + 'location' => 'path', |
|
| 441 | + 'type' => 'string', |
|
| 442 | + 'required' => true, |
|
| 443 | + ), |
|
| 444 | + ), |
|
| 445 | + ),'list' => array( |
|
| 446 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
|
| 447 | + 'httpMethod' => 'GET', |
|
| 448 | + 'parameters' => array( |
|
| 449 | + 'accountId' => array( |
|
| 450 | + 'location' => 'path', |
|
| 451 | + 'type' => 'string', |
|
| 452 | + 'required' => true, |
|
| 453 | + ), |
|
| 454 | + 'webPropertyId' => array( |
|
| 455 | + 'location' => 'path', |
|
| 456 | + 'type' => 'string', |
|
| 457 | + 'required' => true, |
|
| 458 | + ), |
|
| 459 | + 'max-results' => array( |
|
| 460 | + 'location' => 'query', |
|
| 461 | + 'type' => 'integer', |
|
| 462 | + ), |
|
| 463 | + 'start-index' => array( |
|
| 464 | + 'location' => 'query', |
|
| 465 | + 'type' => 'integer', |
|
| 466 | + ), |
|
| 467 | + ), |
|
| 468 | + ),'patch' => array( |
|
| 469 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 470 | + 'httpMethod' => 'PATCH', |
|
| 471 | + 'parameters' => array( |
|
| 472 | + 'accountId' => array( |
|
| 473 | + 'location' => 'path', |
|
| 474 | + 'type' => 'string', |
|
| 475 | + 'required' => true, |
|
| 476 | + ), |
|
| 477 | + 'webPropertyId' => array( |
|
| 478 | + 'location' => 'path', |
|
| 479 | + 'type' => 'string', |
|
| 480 | + 'required' => true, |
|
| 481 | + ), |
|
| 482 | + 'customDimensionId' => array( |
|
| 483 | + 'location' => 'path', |
|
| 484 | + 'type' => 'string', |
|
| 485 | + 'required' => true, |
|
| 486 | + ), |
|
| 487 | + 'ignoreCustomDataSourceLinks' => array( |
|
| 488 | + 'location' => 'query', |
|
| 489 | + 'type' => 'boolean', |
|
| 490 | + ), |
|
| 491 | + ), |
|
| 492 | + ),'update' => array( |
|
| 493 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
|
| 494 | + 'httpMethod' => 'PUT', |
|
| 495 | + 'parameters' => array( |
|
| 496 | + 'accountId' => array( |
|
| 497 | + 'location' => 'path', |
|
| 498 | + 'type' => 'string', |
|
| 499 | + 'required' => true, |
|
| 500 | + ), |
|
| 501 | + 'webPropertyId' => array( |
|
| 502 | + 'location' => 'path', |
|
| 503 | + 'type' => 'string', |
|
| 504 | + 'required' => true, |
|
| 505 | + ), |
|
| 506 | + 'customDimensionId' => array( |
|
| 507 | + 'location' => 'path', |
|
| 508 | + 'type' => 'string', |
|
| 509 | + 'required' => true, |
|
| 510 | + ), |
|
| 511 | + 'ignoreCustomDataSourceLinks' => array( |
|
| 512 | + 'location' => 'query', |
|
| 513 | + 'type' => 'boolean', |
|
| 514 | + ), |
|
| 515 | + ), |
|
| 516 | + ), |
|
| 517 | + ) |
|
| 518 | + ) |
|
| 519 | + ); |
|
| 520 | + $this->management_customMetrics = new Google_Service_Analytics_ManagementCustomMetrics_Resource( |
|
| 521 | + $this, |
|
| 522 | + $this->serviceName, |
|
| 523 | + 'customMetrics', |
|
| 524 | + array( |
|
| 525 | + 'methods' => array( |
|
| 526 | + 'get' => array( |
|
| 527 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 528 | + 'httpMethod' => 'GET', |
|
| 529 | + 'parameters' => array( |
|
| 530 | + 'accountId' => array( |
|
| 531 | + 'location' => 'path', |
|
| 532 | + 'type' => 'string', |
|
| 533 | + 'required' => true, |
|
| 534 | + ), |
|
| 535 | + 'webPropertyId' => array( |
|
| 536 | + 'location' => 'path', |
|
| 537 | + 'type' => 'string', |
|
| 538 | + 'required' => true, |
|
| 539 | + ), |
|
| 540 | + 'customMetricId' => array( |
|
| 541 | + 'location' => 'path', |
|
| 542 | + 'type' => 'string', |
|
| 543 | + 'required' => true, |
|
| 544 | + ), |
|
| 545 | + ), |
|
| 546 | + ),'insert' => array( |
|
| 547 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
|
| 548 | + 'httpMethod' => 'POST', |
|
| 549 | + 'parameters' => array( |
|
| 550 | + 'accountId' => array( |
|
| 551 | + 'location' => 'path', |
|
| 552 | + 'type' => 'string', |
|
| 553 | + 'required' => true, |
|
| 554 | + ), |
|
| 555 | + 'webPropertyId' => array( |
|
| 556 | + 'location' => 'path', |
|
| 557 | + 'type' => 'string', |
|
| 558 | + 'required' => true, |
|
| 559 | + ), |
|
| 560 | + ), |
|
| 561 | + ),'list' => array( |
|
| 562 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
|
| 563 | + 'httpMethod' => 'GET', |
|
| 564 | + 'parameters' => array( |
|
| 565 | + 'accountId' => array( |
|
| 566 | + 'location' => 'path', |
|
| 567 | + 'type' => 'string', |
|
| 568 | + 'required' => true, |
|
| 569 | + ), |
|
| 570 | + 'webPropertyId' => array( |
|
| 571 | + 'location' => 'path', |
|
| 572 | + 'type' => 'string', |
|
| 573 | + 'required' => true, |
|
| 574 | + ), |
|
| 575 | + 'max-results' => array( |
|
| 576 | + 'location' => 'query', |
|
| 577 | + 'type' => 'integer', |
|
| 578 | + ), |
|
| 579 | + 'start-index' => array( |
|
| 580 | + 'location' => 'query', |
|
| 581 | + 'type' => 'integer', |
|
| 582 | + ), |
|
| 583 | + ), |
|
| 584 | + ),'patch' => array( |
|
| 585 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 586 | + 'httpMethod' => 'PATCH', |
|
| 587 | + 'parameters' => array( |
|
| 588 | + 'accountId' => array( |
|
| 589 | + 'location' => 'path', |
|
| 590 | + 'type' => 'string', |
|
| 591 | + 'required' => true, |
|
| 592 | + ), |
|
| 593 | + 'webPropertyId' => array( |
|
| 594 | + 'location' => 'path', |
|
| 595 | + 'type' => 'string', |
|
| 596 | + 'required' => true, |
|
| 597 | + ), |
|
| 598 | + 'customMetricId' => array( |
|
| 599 | + 'location' => 'path', |
|
| 600 | + 'type' => 'string', |
|
| 601 | + 'required' => true, |
|
| 602 | + ), |
|
| 603 | + 'ignoreCustomDataSourceLinks' => array( |
|
| 604 | + 'location' => 'query', |
|
| 605 | + 'type' => 'boolean', |
|
| 606 | + ), |
|
| 607 | + ), |
|
| 608 | + ),'update' => array( |
|
| 609 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
|
| 610 | + 'httpMethod' => 'PUT', |
|
| 611 | + 'parameters' => array( |
|
| 612 | + 'accountId' => array( |
|
| 613 | + 'location' => 'path', |
|
| 614 | + 'type' => 'string', |
|
| 615 | + 'required' => true, |
|
| 616 | + ), |
|
| 617 | + 'webPropertyId' => array( |
|
| 618 | + 'location' => 'path', |
|
| 619 | + 'type' => 'string', |
|
| 620 | + 'required' => true, |
|
| 621 | + ), |
|
| 622 | + 'customMetricId' => array( |
|
| 623 | + 'location' => 'path', |
|
| 624 | + 'type' => 'string', |
|
| 625 | + 'required' => true, |
|
| 626 | + ), |
|
| 627 | + 'ignoreCustomDataSourceLinks' => array( |
|
| 628 | + 'location' => 'query', |
|
| 629 | + 'type' => 'boolean', |
|
| 630 | + ), |
|
| 631 | + ), |
|
| 632 | + ), |
|
| 633 | + ) |
|
| 634 | + ) |
|
| 635 | + ); |
|
| 636 | + $this->management_experiments = new Google_Service_Analytics_ManagementExperiments_Resource( |
|
| 637 | + $this, |
|
| 638 | + $this->serviceName, |
|
| 639 | + 'experiments', |
|
| 640 | + array( |
|
| 641 | + 'methods' => array( |
|
| 642 | + 'delete' => array( |
|
| 643 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 644 | + 'httpMethod' => 'DELETE', |
|
| 645 | + 'parameters' => array( |
|
| 646 | + 'accountId' => array( |
|
| 647 | + 'location' => 'path', |
|
| 648 | + 'type' => 'string', |
|
| 649 | + 'required' => true, |
|
| 650 | + ), |
|
| 651 | + 'webPropertyId' => array( |
|
| 652 | + 'location' => 'path', |
|
| 653 | + 'type' => 'string', |
|
| 654 | + 'required' => true, |
|
| 655 | + ), |
|
| 656 | + 'profileId' => array( |
|
| 657 | + 'location' => 'path', |
|
| 658 | + 'type' => 'string', |
|
| 659 | + 'required' => true, |
|
| 660 | + ), |
|
| 661 | + 'experimentId' => array( |
|
| 662 | + 'location' => 'path', |
|
| 663 | + 'type' => 'string', |
|
| 664 | + 'required' => true, |
|
| 665 | + ), |
|
| 666 | + ), |
|
| 667 | + ),'get' => array( |
|
| 668 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 669 | + 'httpMethod' => 'GET', |
|
| 670 | + 'parameters' => array( |
|
| 671 | + 'accountId' => array( |
|
| 672 | + 'location' => 'path', |
|
| 673 | + 'type' => 'string', |
|
| 674 | + 'required' => true, |
|
| 675 | + ), |
|
| 676 | + 'webPropertyId' => array( |
|
| 677 | + 'location' => 'path', |
|
| 678 | + 'type' => 'string', |
|
| 679 | + 'required' => true, |
|
| 680 | + ), |
|
| 681 | + 'profileId' => array( |
|
| 682 | + 'location' => 'path', |
|
| 683 | + 'type' => 'string', |
|
| 684 | + 'required' => true, |
|
| 685 | + ), |
|
| 686 | + 'experimentId' => array( |
|
| 687 | + 'location' => 'path', |
|
| 688 | + 'type' => 'string', |
|
| 689 | + 'required' => true, |
|
| 690 | + ), |
|
| 691 | + ), |
|
| 692 | + ),'insert' => array( |
|
| 693 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
|
| 694 | + 'httpMethod' => 'POST', |
|
| 695 | + 'parameters' => array( |
|
| 696 | + 'accountId' => array( |
|
| 697 | + 'location' => 'path', |
|
| 698 | + 'type' => 'string', |
|
| 699 | + 'required' => true, |
|
| 700 | + ), |
|
| 701 | + 'webPropertyId' => array( |
|
| 702 | + 'location' => 'path', |
|
| 703 | + 'type' => 'string', |
|
| 704 | + 'required' => true, |
|
| 705 | + ), |
|
| 706 | + 'profileId' => array( |
|
| 707 | + 'location' => 'path', |
|
| 708 | + 'type' => 'string', |
|
| 709 | + 'required' => true, |
|
| 710 | + ), |
|
| 711 | + ), |
|
| 712 | + ),'list' => array( |
|
| 713 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
|
| 714 | + 'httpMethod' => 'GET', |
|
| 715 | + 'parameters' => array( |
|
| 716 | + 'accountId' => array( |
|
| 717 | + 'location' => 'path', |
|
| 718 | + 'type' => 'string', |
|
| 719 | + 'required' => true, |
|
| 720 | + ), |
|
| 721 | + 'webPropertyId' => array( |
|
| 722 | + 'location' => 'path', |
|
| 723 | + 'type' => 'string', |
|
| 724 | + 'required' => true, |
|
| 725 | + ), |
|
| 726 | + 'profileId' => array( |
|
| 727 | + 'location' => 'path', |
|
| 728 | + 'type' => 'string', |
|
| 729 | + 'required' => true, |
|
| 730 | + ), |
|
| 731 | + 'max-results' => array( |
|
| 732 | + 'location' => 'query', |
|
| 733 | + 'type' => 'integer', |
|
| 734 | + ), |
|
| 735 | + 'start-index' => array( |
|
| 736 | + 'location' => 'query', |
|
| 737 | + 'type' => 'integer', |
|
| 738 | + ), |
|
| 739 | + ), |
|
| 740 | + ),'patch' => array( |
|
| 741 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 742 | + 'httpMethod' => 'PATCH', |
|
| 743 | + 'parameters' => array( |
|
| 744 | + 'accountId' => array( |
|
| 745 | + 'location' => 'path', |
|
| 746 | + 'type' => 'string', |
|
| 747 | + 'required' => true, |
|
| 748 | + ), |
|
| 749 | + 'webPropertyId' => array( |
|
| 750 | + 'location' => 'path', |
|
| 751 | + 'type' => 'string', |
|
| 752 | + 'required' => true, |
|
| 753 | + ), |
|
| 754 | + 'profileId' => array( |
|
| 755 | + 'location' => 'path', |
|
| 756 | + 'type' => 'string', |
|
| 757 | + 'required' => true, |
|
| 758 | + ), |
|
| 759 | + 'experimentId' => array( |
|
| 760 | + 'location' => 'path', |
|
| 761 | + 'type' => 'string', |
|
| 762 | + 'required' => true, |
|
| 763 | + ), |
|
| 764 | + ), |
|
| 765 | + ),'update' => array( |
|
| 766 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
|
| 767 | + 'httpMethod' => 'PUT', |
|
| 768 | + 'parameters' => array( |
|
| 769 | + 'accountId' => array( |
|
| 770 | + 'location' => 'path', |
|
| 771 | + 'type' => 'string', |
|
| 772 | + 'required' => true, |
|
| 773 | + ), |
|
| 774 | + 'webPropertyId' => array( |
|
| 775 | + 'location' => 'path', |
|
| 776 | + 'type' => 'string', |
|
| 777 | + 'required' => true, |
|
| 778 | + ), |
|
| 779 | + 'profileId' => array( |
|
| 780 | + 'location' => 'path', |
|
| 781 | + 'type' => 'string', |
|
| 782 | + 'required' => true, |
|
| 783 | + ), |
|
| 784 | + 'experimentId' => array( |
|
| 785 | + 'location' => 'path', |
|
| 786 | + 'type' => 'string', |
|
| 787 | + 'required' => true, |
|
| 788 | + ), |
|
| 789 | + ), |
|
| 790 | + ), |
|
| 791 | + ) |
|
| 792 | + ) |
|
| 793 | + ); |
|
| 794 | + $this->management_filters = new Google_Service_Analytics_ManagementFilters_Resource( |
|
| 795 | + $this, |
|
| 796 | + $this->serviceName, |
|
| 797 | + 'filters', |
|
| 798 | + array( |
|
| 799 | + 'methods' => array( |
|
| 800 | + 'delete' => array( |
|
| 801 | + 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 802 | + 'httpMethod' => 'DELETE', |
|
| 803 | + 'parameters' => array( |
|
| 804 | + 'accountId' => array( |
|
| 805 | + 'location' => 'path', |
|
| 806 | + 'type' => 'string', |
|
| 807 | + 'required' => true, |
|
| 808 | + ), |
|
| 809 | + 'filterId' => array( |
|
| 810 | + 'location' => 'path', |
|
| 811 | + 'type' => 'string', |
|
| 812 | + 'required' => true, |
|
| 813 | + ), |
|
| 814 | + ), |
|
| 815 | + ),'get' => array( |
|
| 816 | + 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 817 | + 'httpMethod' => 'GET', |
|
| 818 | + 'parameters' => array( |
|
| 819 | + 'accountId' => array( |
|
| 820 | + 'location' => 'path', |
|
| 821 | + 'type' => 'string', |
|
| 822 | + 'required' => true, |
|
| 823 | + ), |
|
| 824 | + 'filterId' => array( |
|
| 825 | + 'location' => 'path', |
|
| 826 | + 'type' => 'string', |
|
| 827 | + 'required' => true, |
|
| 828 | + ), |
|
| 829 | + ), |
|
| 830 | + ),'insert' => array( |
|
| 831 | + 'path' => 'management/accounts/{accountId}/filters', |
|
| 832 | + 'httpMethod' => 'POST', |
|
| 833 | + 'parameters' => array( |
|
| 834 | + 'accountId' => array( |
|
| 835 | + 'location' => 'path', |
|
| 836 | + 'type' => 'string', |
|
| 837 | + 'required' => true, |
|
| 838 | + ), |
|
| 839 | + ), |
|
| 840 | + ),'list' => array( |
|
| 841 | + 'path' => 'management/accounts/{accountId}/filters', |
|
| 842 | + 'httpMethod' => 'GET', |
|
| 843 | + 'parameters' => array( |
|
| 844 | + 'accountId' => array( |
|
| 845 | + 'location' => 'path', |
|
| 846 | + 'type' => 'string', |
|
| 847 | + 'required' => true, |
|
| 848 | + ), |
|
| 849 | + 'max-results' => array( |
|
| 850 | + 'location' => 'query', |
|
| 851 | + 'type' => 'integer', |
|
| 852 | + ), |
|
| 853 | + 'start-index' => array( |
|
| 854 | + 'location' => 'query', |
|
| 855 | + 'type' => 'integer', |
|
| 856 | + ), |
|
| 857 | + ), |
|
| 858 | + ),'patch' => array( |
|
| 859 | + 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 860 | + 'httpMethod' => 'PATCH', |
|
| 861 | + 'parameters' => array( |
|
| 862 | + 'accountId' => array( |
|
| 863 | + 'location' => 'path', |
|
| 864 | + 'type' => 'string', |
|
| 865 | + 'required' => true, |
|
| 866 | + ), |
|
| 867 | + 'filterId' => array( |
|
| 868 | + 'location' => 'path', |
|
| 869 | + 'type' => 'string', |
|
| 870 | + 'required' => true, |
|
| 871 | + ), |
|
| 872 | + ), |
|
| 873 | + ),'update' => array( |
|
| 874 | + 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
|
| 875 | + 'httpMethod' => 'PUT', |
|
| 876 | + 'parameters' => array( |
|
| 877 | + 'accountId' => array( |
|
| 878 | + 'location' => 'path', |
|
| 879 | + 'type' => 'string', |
|
| 880 | + 'required' => true, |
|
| 881 | + ), |
|
| 882 | + 'filterId' => array( |
|
| 883 | + 'location' => 'path', |
|
| 884 | + 'type' => 'string', |
|
| 885 | + 'required' => true, |
|
| 886 | + ), |
|
| 887 | + ), |
|
| 888 | + ), |
|
| 889 | + ) |
|
| 890 | + ) |
|
| 891 | + ); |
|
| 892 | + $this->management_goals = new Google_Service_Analytics_ManagementGoals_Resource( |
|
| 893 | + $this, |
|
| 894 | + $this->serviceName, |
|
| 895 | + 'goals', |
|
| 896 | + array( |
|
| 897 | + 'methods' => array( |
|
| 898 | + 'get' => array( |
|
| 899 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 900 | + 'httpMethod' => 'GET', |
|
| 901 | + 'parameters' => array( |
|
| 902 | + 'accountId' => array( |
|
| 903 | + 'location' => 'path', |
|
| 904 | + 'type' => 'string', |
|
| 905 | + 'required' => true, |
|
| 906 | + ), |
|
| 907 | + 'webPropertyId' => array( |
|
| 908 | + 'location' => 'path', |
|
| 909 | + 'type' => 'string', |
|
| 910 | + 'required' => true, |
|
| 911 | + ), |
|
| 912 | + 'profileId' => array( |
|
| 913 | + 'location' => 'path', |
|
| 914 | + 'type' => 'string', |
|
| 915 | + 'required' => true, |
|
| 916 | + ), |
|
| 917 | + 'goalId' => array( |
|
| 918 | + 'location' => 'path', |
|
| 919 | + 'type' => 'string', |
|
| 920 | + 'required' => true, |
|
| 921 | + ), |
|
| 922 | + ), |
|
| 923 | + ),'insert' => array( |
|
| 924 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
|
| 925 | + 'httpMethod' => 'POST', |
|
| 926 | + 'parameters' => array( |
|
| 927 | + 'accountId' => array( |
|
| 928 | + 'location' => 'path', |
|
| 929 | + 'type' => 'string', |
|
| 930 | + 'required' => true, |
|
| 931 | + ), |
|
| 932 | + 'webPropertyId' => array( |
|
| 933 | + 'location' => 'path', |
|
| 934 | + 'type' => 'string', |
|
| 935 | + 'required' => true, |
|
| 936 | + ), |
|
| 937 | + 'profileId' => array( |
|
| 938 | + 'location' => 'path', |
|
| 939 | + 'type' => 'string', |
|
| 940 | + 'required' => true, |
|
| 941 | + ), |
|
| 942 | + ), |
|
| 943 | + ),'list' => array( |
|
| 944 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
|
| 945 | + 'httpMethod' => 'GET', |
|
| 946 | + 'parameters' => array( |
|
| 947 | + 'accountId' => array( |
|
| 948 | + 'location' => 'path', |
|
| 949 | + 'type' => 'string', |
|
| 950 | + 'required' => true, |
|
| 951 | + ), |
|
| 952 | + 'webPropertyId' => array( |
|
| 953 | + 'location' => 'path', |
|
| 954 | + 'type' => 'string', |
|
| 955 | + 'required' => true, |
|
| 956 | + ), |
|
| 957 | + 'profileId' => array( |
|
| 958 | + 'location' => 'path', |
|
| 959 | + 'type' => 'string', |
|
| 960 | + 'required' => true, |
|
| 961 | + ), |
|
| 962 | + 'max-results' => array( |
|
| 963 | + 'location' => 'query', |
|
| 964 | + 'type' => 'integer', |
|
| 965 | + ), |
|
| 966 | + 'start-index' => array( |
|
| 967 | + 'location' => 'query', |
|
| 968 | + 'type' => 'integer', |
|
| 969 | + ), |
|
| 970 | + ), |
|
| 971 | + ),'patch' => array( |
|
| 972 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 973 | + 'httpMethod' => 'PATCH', |
|
| 974 | + 'parameters' => array( |
|
| 975 | + 'accountId' => array( |
|
| 976 | + 'location' => 'path', |
|
| 977 | + 'type' => 'string', |
|
| 978 | + 'required' => true, |
|
| 979 | + ), |
|
| 980 | + 'webPropertyId' => array( |
|
| 981 | + 'location' => 'path', |
|
| 982 | + 'type' => 'string', |
|
| 983 | + 'required' => true, |
|
| 984 | + ), |
|
| 985 | + 'profileId' => array( |
|
| 986 | + 'location' => 'path', |
|
| 987 | + 'type' => 'string', |
|
| 988 | + 'required' => true, |
|
| 989 | + ), |
|
| 990 | + 'goalId' => array( |
|
| 991 | + 'location' => 'path', |
|
| 992 | + 'type' => 'string', |
|
| 993 | + 'required' => true, |
|
| 994 | + ), |
|
| 995 | + ), |
|
| 996 | + ),'update' => array( |
|
| 997 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
|
| 998 | + 'httpMethod' => 'PUT', |
|
| 999 | + 'parameters' => array( |
|
| 1000 | + 'accountId' => array( |
|
| 1001 | + 'location' => 'path', |
|
| 1002 | + 'type' => 'string', |
|
| 1003 | + 'required' => true, |
|
| 1004 | + ), |
|
| 1005 | + 'webPropertyId' => array( |
|
| 1006 | + 'location' => 'path', |
|
| 1007 | + 'type' => 'string', |
|
| 1008 | + 'required' => true, |
|
| 1009 | + ), |
|
| 1010 | + 'profileId' => array( |
|
| 1011 | + 'location' => 'path', |
|
| 1012 | + 'type' => 'string', |
|
| 1013 | + 'required' => true, |
|
| 1014 | + ), |
|
| 1015 | + 'goalId' => array( |
|
| 1016 | + 'location' => 'path', |
|
| 1017 | + 'type' => 'string', |
|
| 1018 | + 'required' => true, |
|
| 1019 | + ), |
|
| 1020 | + ), |
|
| 1021 | + ), |
|
| 1022 | + ) |
|
| 1023 | + ) |
|
| 1024 | + ); |
|
| 1025 | + $this->management_profileFilterLinks = new Google_Service_Analytics_ManagementProfileFilterLinks_Resource( |
|
| 1026 | + $this, |
|
| 1027 | + $this->serviceName, |
|
| 1028 | + 'profileFilterLinks', |
|
| 1029 | + array( |
|
| 1030 | + 'methods' => array( |
|
| 1031 | + 'delete' => array( |
|
| 1032 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1033 | + 'httpMethod' => 'DELETE', |
|
| 1034 | + 'parameters' => array( |
|
| 1035 | + 'accountId' => array( |
|
| 1036 | + 'location' => 'path', |
|
| 1037 | + 'type' => 'string', |
|
| 1038 | + 'required' => true, |
|
| 1039 | + ), |
|
| 1040 | + 'webPropertyId' => array( |
|
| 1041 | + 'location' => 'path', |
|
| 1042 | + 'type' => 'string', |
|
| 1043 | + 'required' => true, |
|
| 1044 | + ), |
|
| 1045 | + 'profileId' => array( |
|
| 1046 | + 'location' => 'path', |
|
| 1047 | + 'type' => 'string', |
|
| 1048 | + 'required' => true, |
|
| 1049 | + ), |
|
| 1050 | + 'linkId' => array( |
|
| 1051 | + 'location' => 'path', |
|
| 1052 | + 'type' => 'string', |
|
| 1053 | + 'required' => true, |
|
| 1054 | + ), |
|
| 1055 | + ), |
|
| 1056 | + ),'get' => array( |
|
| 1057 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1058 | + 'httpMethod' => 'GET', |
|
| 1059 | + 'parameters' => array( |
|
| 1060 | + 'accountId' => array( |
|
| 1061 | + 'location' => 'path', |
|
| 1062 | + 'type' => 'string', |
|
| 1063 | + 'required' => true, |
|
| 1064 | + ), |
|
| 1065 | + 'webPropertyId' => array( |
|
| 1066 | + 'location' => 'path', |
|
| 1067 | + 'type' => 'string', |
|
| 1068 | + 'required' => true, |
|
| 1069 | + ), |
|
| 1070 | + 'profileId' => array( |
|
| 1071 | + 'location' => 'path', |
|
| 1072 | + 'type' => 'string', |
|
| 1073 | + 'required' => true, |
|
| 1074 | + ), |
|
| 1075 | + 'linkId' => array( |
|
| 1076 | + 'location' => 'path', |
|
| 1077 | + 'type' => 'string', |
|
| 1078 | + 'required' => true, |
|
| 1079 | + ), |
|
| 1080 | + ), |
|
| 1081 | + ),'insert' => array( |
|
| 1082 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
|
| 1083 | + 'httpMethod' => 'POST', |
|
| 1084 | + 'parameters' => array( |
|
| 1085 | + 'accountId' => array( |
|
| 1086 | + 'location' => 'path', |
|
| 1087 | + 'type' => 'string', |
|
| 1088 | + 'required' => true, |
|
| 1089 | + ), |
|
| 1090 | + 'webPropertyId' => array( |
|
| 1091 | + 'location' => 'path', |
|
| 1092 | + 'type' => 'string', |
|
| 1093 | + 'required' => true, |
|
| 1094 | + ), |
|
| 1095 | + 'profileId' => array( |
|
| 1096 | + 'location' => 'path', |
|
| 1097 | + 'type' => 'string', |
|
| 1098 | + 'required' => true, |
|
| 1099 | + ), |
|
| 1100 | + ), |
|
| 1101 | + ),'list' => array( |
|
| 1102 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
|
| 1103 | + 'httpMethod' => 'GET', |
|
| 1104 | + 'parameters' => array( |
|
| 1105 | + 'accountId' => array( |
|
| 1106 | + 'location' => 'path', |
|
| 1107 | + 'type' => 'string', |
|
| 1108 | + 'required' => true, |
|
| 1109 | + ), |
|
| 1110 | + 'webPropertyId' => array( |
|
| 1111 | + 'location' => 'path', |
|
| 1112 | + 'type' => 'string', |
|
| 1113 | + 'required' => true, |
|
| 1114 | + ), |
|
| 1115 | + 'profileId' => array( |
|
| 1116 | + 'location' => 'path', |
|
| 1117 | + 'type' => 'string', |
|
| 1118 | + 'required' => true, |
|
| 1119 | + ), |
|
| 1120 | + 'max-results' => array( |
|
| 1121 | + 'location' => 'query', |
|
| 1122 | + 'type' => 'integer', |
|
| 1123 | + ), |
|
| 1124 | + 'start-index' => array( |
|
| 1125 | + 'location' => 'query', |
|
| 1126 | + 'type' => 'integer', |
|
| 1127 | + ), |
|
| 1128 | + ), |
|
| 1129 | + ),'patch' => array( |
|
| 1130 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1131 | + 'httpMethod' => 'PATCH', |
|
| 1132 | + 'parameters' => array( |
|
| 1133 | + 'accountId' => array( |
|
| 1134 | + 'location' => 'path', |
|
| 1135 | + 'type' => 'string', |
|
| 1136 | + 'required' => true, |
|
| 1137 | + ), |
|
| 1138 | + 'webPropertyId' => array( |
|
| 1139 | + 'location' => 'path', |
|
| 1140 | + 'type' => 'string', |
|
| 1141 | + 'required' => true, |
|
| 1142 | + ), |
|
| 1143 | + 'profileId' => array( |
|
| 1144 | + 'location' => 'path', |
|
| 1145 | + 'type' => 'string', |
|
| 1146 | + 'required' => true, |
|
| 1147 | + ), |
|
| 1148 | + 'linkId' => array( |
|
| 1149 | + 'location' => 'path', |
|
| 1150 | + 'type' => 'string', |
|
| 1151 | + 'required' => true, |
|
| 1152 | + ), |
|
| 1153 | + ), |
|
| 1154 | + ),'update' => array( |
|
| 1155 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
|
| 1156 | + 'httpMethod' => 'PUT', |
|
| 1157 | + 'parameters' => array( |
|
| 1158 | + 'accountId' => array( |
|
| 1159 | + 'location' => 'path', |
|
| 1160 | + 'type' => 'string', |
|
| 1161 | + 'required' => true, |
|
| 1162 | + ), |
|
| 1163 | + 'webPropertyId' => array( |
|
| 1164 | + 'location' => 'path', |
|
| 1165 | + 'type' => 'string', |
|
| 1166 | + 'required' => true, |
|
| 1167 | + ), |
|
| 1168 | + 'profileId' => array( |
|
| 1169 | + 'location' => 'path', |
|
| 1170 | + 'type' => 'string', |
|
| 1171 | + 'required' => true, |
|
| 1172 | + ), |
|
| 1173 | + 'linkId' => array( |
|
| 1174 | + 'location' => 'path', |
|
| 1175 | + 'type' => 'string', |
|
| 1176 | + 'required' => true, |
|
| 1177 | + ), |
|
| 1178 | + ), |
|
| 1179 | + ), |
|
| 1180 | + ) |
|
| 1181 | + ) |
|
| 1182 | + ); |
|
| 1183 | + $this->management_profileUserLinks = new Google_Service_Analytics_ManagementProfileUserLinks_Resource( |
|
| 1184 | + $this, |
|
| 1185 | + $this->serviceName, |
|
| 1186 | + 'profileUserLinks', |
|
| 1187 | + array( |
|
| 1188 | + 'methods' => array( |
|
| 1189 | + 'delete' => array( |
|
| 1190 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', |
|
| 1191 | + 'httpMethod' => 'DELETE', |
|
| 1192 | + 'parameters' => array( |
|
| 1193 | + 'accountId' => array( |
|
| 1194 | + 'location' => 'path', |
|
| 1195 | + 'type' => 'string', |
|
| 1196 | + 'required' => true, |
|
| 1197 | + ), |
|
| 1198 | + 'webPropertyId' => array( |
|
| 1199 | + 'location' => 'path', |
|
| 1200 | + 'type' => 'string', |
|
| 1201 | + 'required' => true, |
|
| 1202 | + ), |
|
| 1203 | + 'profileId' => array( |
|
| 1204 | + 'location' => 'path', |
|
| 1205 | + 'type' => 'string', |
|
| 1206 | + 'required' => true, |
|
| 1207 | + ), |
|
| 1208 | + 'linkId' => array( |
|
| 1209 | + 'location' => 'path', |
|
| 1210 | + 'type' => 'string', |
|
| 1211 | + 'required' => true, |
|
| 1212 | + ), |
|
| 1213 | + ), |
|
| 1214 | + ),'insert' => array( |
|
| 1215 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
|
| 1216 | + 'httpMethod' => 'POST', |
|
| 1217 | + 'parameters' => array( |
|
| 1218 | + 'accountId' => array( |
|
| 1219 | + 'location' => 'path', |
|
| 1220 | + 'type' => 'string', |
|
| 1221 | + 'required' => true, |
|
| 1222 | + ), |
|
| 1223 | + 'webPropertyId' => array( |
|
| 1224 | + 'location' => 'path', |
|
| 1225 | + 'type' => 'string', |
|
| 1226 | + 'required' => true, |
|
| 1227 | + ), |
|
| 1228 | + 'profileId' => array( |
|
| 1229 | + 'location' => 'path', |
|
| 1230 | + 'type' => 'string', |
|
| 1231 | + 'required' => true, |
|
| 1232 | + ), |
|
| 1233 | + ), |
|
| 1234 | + ),'list' => array( |
|
| 1235 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
|
| 1236 | + 'httpMethod' => 'GET', |
|
| 1237 | + 'parameters' => array( |
|
| 1238 | + 'accountId' => array( |
|
| 1239 | + 'location' => 'path', |
|
| 1240 | + 'type' => 'string', |
|
| 1241 | + 'required' => true, |
|
| 1242 | + ), |
|
| 1243 | + 'webPropertyId' => array( |
|
| 1244 | + 'location' => 'path', |
|
| 1245 | + 'type' => 'string', |
|
| 1246 | + 'required' => true, |
|
| 1247 | + ), |
|
| 1248 | + 'profileId' => array( |
|
| 1249 | + 'location' => 'path', |
|
| 1250 | + 'type' => 'string', |
|
| 1251 | + 'required' => true, |
|
| 1252 | + ), |
|
| 1253 | + 'max-results' => array( |
|
| 1254 | + 'location' => 'query', |
|
| 1255 | + 'type' => 'integer', |
|
| 1256 | + ), |
|
| 1257 | + 'start-index' => array( |
|
| 1258 | + 'location' => 'query', |
|
| 1259 | + 'type' => 'integer', |
|
| 1260 | + ), |
|
| 1261 | + ), |
|
| 1262 | + ),'update' => array( |
|
| 1263 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', |
|
| 1264 | + 'httpMethod' => 'PUT', |
|
| 1265 | + 'parameters' => array( |
|
| 1266 | + 'accountId' => array( |
|
| 1267 | + 'location' => 'path', |
|
| 1268 | + 'type' => 'string', |
|
| 1269 | + 'required' => true, |
|
| 1270 | + ), |
|
| 1271 | + 'webPropertyId' => array( |
|
| 1272 | + 'location' => 'path', |
|
| 1273 | + 'type' => 'string', |
|
| 1274 | + 'required' => true, |
|
| 1275 | + ), |
|
| 1276 | + 'profileId' => array( |
|
| 1277 | + 'location' => 'path', |
|
| 1278 | + 'type' => 'string', |
|
| 1279 | + 'required' => true, |
|
| 1280 | + ), |
|
| 1281 | + 'linkId' => array( |
|
| 1282 | + 'location' => 'path', |
|
| 1283 | + 'type' => 'string', |
|
| 1284 | + 'required' => true, |
|
| 1285 | + ), |
|
| 1286 | + ), |
|
| 1287 | + ), |
|
| 1288 | + ) |
|
| 1289 | + ) |
|
| 1290 | + ); |
|
| 1291 | + $this->management_profiles = new Google_Service_Analytics_ManagementProfiles_Resource( |
|
| 1292 | + $this, |
|
| 1293 | + $this->serviceName, |
|
| 1294 | + 'profiles', |
|
| 1295 | + array( |
|
| 1296 | + 'methods' => array( |
|
| 1297 | + 'delete' => array( |
|
| 1298 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1299 | + 'httpMethod' => 'DELETE', |
|
| 1300 | + 'parameters' => array( |
|
| 1301 | + 'accountId' => array( |
|
| 1302 | + 'location' => 'path', |
|
| 1303 | + 'type' => 'string', |
|
| 1304 | + 'required' => true, |
|
| 1305 | + ), |
|
| 1306 | + 'webPropertyId' => array( |
|
| 1307 | + 'location' => 'path', |
|
| 1308 | + 'type' => 'string', |
|
| 1309 | + 'required' => true, |
|
| 1310 | + ), |
|
| 1311 | + 'profileId' => array( |
|
| 1312 | + 'location' => 'path', |
|
| 1313 | + 'type' => 'string', |
|
| 1314 | + 'required' => true, |
|
| 1315 | + ), |
|
| 1316 | + ), |
|
| 1317 | + ),'get' => array( |
|
| 1318 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1319 | + 'httpMethod' => 'GET', |
|
| 1320 | + 'parameters' => array( |
|
| 1321 | + 'accountId' => array( |
|
| 1322 | + 'location' => 'path', |
|
| 1323 | + 'type' => 'string', |
|
| 1324 | + 'required' => true, |
|
| 1325 | + ), |
|
| 1326 | + 'webPropertyId' => array( |
|
| 1327 | + 'location' => 'path', |
|
| 1328 | + 'type' => 'string', |
|
| 1329 | + 'required' => true, |
|
| 1330 | + ), |
|
| 1331 | + 'profileId' => array( |
|
| 1332 | + 'location' => 'path', |
|
| 1333 | + 'type' => 'string', |
|
| 1334 | + 'required' => true, |
|
| 1335 | + ), |
|
| 1336 | + ), |
|
| 1337 | + ),'insert' => array( |
|
| 1338 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
|
| 1339 | + 'httpMethod' => 'POST', |
|
| 1340 | + 'parameters' => array( |
|
| 1341 | + 'accountId' => array( |
|
| 1342 | + 'location' => 'path', |
|
| 1343 | + 'type' => 'string', |
|
| 1344 | + 'required' => true, |
|
| 1345 | + ), |
|
| 1346 | + 'webPropertyId' => array( |
|
| 1347 | + 'location' => 'path', |
|
| 1348 | + 'type' => 'string', |
|
| 1349 | + 'required' => true, |
|
| 1350 | + ), |
|
| 1351 | + ), |
|
| 1352 | + ),'list' => array( |
|
| 1353 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
|
| 1354 | + 'httpMethod' => 'GET', |
|
| 1355 | + 'parameters' => array( |
|
| 1356 | + 'accountId' => array( |
|
| 1357 | + 'location' => 'path', |
|
| 1358 | + 'type' => 'string', |
|
| 1359 | + 'required' => true, |
|
| 1360 | + ), |
|
| 1361 | + 'webPropertyId' => array( |
|
| 1362 | + 'location' => 'path', |
|
| 1363 | + 'type' => 'string', |
|
| 1364 | + 'required' => true, |
|
| 1365 | + ), |
|
| 1366 | + 'max-results' => array( |
|
| 1367 | + 'location' => 'query', |
|
| 1368 | + 'type' => 'integer', |
|
| 1369 | + ), |
|
| 1370 | + 'start-index' => array( |
|
| 1371 | + 'location' => 'query', |
|
| 1372 | + 'type' => 'integer', |
|
| 1373 | + ), |
|
| 1374 | + ), |
|
| 1375 | + ),'patch' => array( |
|
| 1376 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1377 | + 'httpMethod' => 'PATCH', |
|
| 1378 | + 'parameters' => array( |
|
| 1379 | + 'accountId' => array( |
|
| 1380 | + 'location' => 'path', |
|
| 1381 | + 'type' => 'string', |
|
| 1382 | + 'required' => true, |
|
| 1383 | + ), |
|
| 1384 | + 'webPropertyId' => array( |
|
| 1385 | + 'location' => 'path', |
|
| 1386 | + 'type' => 'string', |
|
| 1387 | + 'required' => true, |
|
| 1388 | + ), |
|
| 1389 | + 'profileId' => array( |
|
| 1390 | + 'location' => 'path', |
|
| 1391 | + 'type' => 'string', |
|
| 1392 | + 'required' => true, |
|
| 1393 | + ), |
|
| 1394 | + ), |
|
| 1395 | + ),'update' => array( |
|
| 1396 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
|
| 1397 | + 'httpMethod' => 'PUT', |
|
| 1398 | + 'parameters' => array( |
|
| 1399 | + 'accountId' => array( |
|
| 1400 | + 'location' => 'path', |
|
| 1401 | + 'type' => 'string', |
|
| 1402 | + 'required' => true, |
|
| 1403 | + ), |
|
| 1404 | + 'webPropertyId' => array( |
|
| 1405 | + 'location' => 'path', |
|
| 1406 | + 'type' => 'string', |
|
| 1407 | + 'required' => true, |
|
| 1408 | + ), |
|
| 1409 | + 'profileId' => array( |
|
| 1410 | + 'location' => 'path', |
|
| 1411 | + 'type' => 'string', |
|
| 1412 | + 'required' => true, |
|
| 1413 | + ), |
|
| 1414 | + ), |
|
| 1415 | + ), |
|
| 1416 | + ) |
|
| 1417 | + ) |
|
| 1418 | + ); |
|
| 1419 | + $this->management_segments = new Google_Service_Analytics_ManagementSegments_Resource( |
|
| 1420 | + $this, |
|
| 1421 | + $this->serviceName, |
|
| 1422 | + 'segments', |
|
| 1423 | + array( |
|
| 1424 | + 'methods' => array( |
|
| 1425 | + 'list' => array( |
|
| 1426 | + 'path' => 'management/segments', |
|
| 1427 | + 'httpMethod' => 'GET', |
|
| 1428 | + 'parameters' => array( |
|
| 1429 | + 'max-results' => array( |
|
| 1430 | + 'location' => 'query', |
|
| 1431 | + 'type' => 'integer', |
|
| 1432 | + ), |
|
| 1433 | + 'start-index' => array( |
|
| 1434 | + 'location' => 'query', |
|
| 1435 | + 'type' => 'integer', |
|
| 1436 | + ), |
|
| 1437 | + ), |
|
| 1438 | + ), |
|
| 1439 | + ) |
|
| 1440 | + ) |
|
| 1441 | + ); |
|
| 1442 | + $this->management_unsampledReports = new Google_Service_Analytics_ManagementUnsampledReports_Resource( |
|
| 1443 | + $this, |
|
| 1444 | + $this->serviceName, |
|
| 1445 | + 'unsampledReports', |
|
| 1446 | + array( |
|
| 1447 | + 'methods' => array( |
|
| 1448 | + 'get' => array( |
|
| 1449 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}', |
|
| 1450 | + 'httpMethod' => 'GET', |
|
| 1451 | + 'parameters' => array( |
|
| 1452 | + 'accountId' => array( |
|
| 1453 | + 'location' => 'path', |
|
| 1454 | + 'type' => 'string', |
|
| 1455 | + 'required' => true, |
|
| 1456 | + ), |
|
| 1457 | + 'webPropertyId' => array( |
|
| 1458 | + 'location' => 'path', |
|
| 1459 | + 'type' => 'string', |
|
| 1460 | + 'required' => true, |
|
| 1461 | + ), |
|
| 1462 | + 'profileId' => array( |
|
| 1463 | + 'location' => 'path', |
|
| 1464 | + 'type' => 'string', |
|
| 1465 | + 'required' => true, |
|
| 1466 | + ), |
|
| 1467 | + 'unsampledReportId' => array( |
|
| 1468 | + 'location' => 'path', |
|
| 1469 | + 'type' => 'string', |
|
| 1470 | + 'required' => true, |
|
| 1471 | + ), |
|
| 1472 | + ), |
|
| 1473 | + ),'insert' => array( |
|
| 1474 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
|
| 1475 | + 'httpMethod' => 'POST', |
|
| 1476 | + 'parameters' => array( |
|
| 1477 | + 'accountId' => array( |
|
| 1478 | + 'location' => 'path', |
|
| 1479 | + 'type' => 'string', |
|
| 1480 | + 'required' => true, |
|
| 1481 | + ), |
|
| 1482 | + 'webPropertyId' => array( |
|
| 1483 | + 'location' => 'path', |
|
| 1484 | + 'type' => 'string', |
|
| 1485 | + 'required' => true, |
|
| 1486 | + ), |
|
| 1487 | + 'profileId' => array( |
|
| 1488 | + 'location' => 'path', |
|
| 1489 | + 'type' => 'string', |
|
| 1490 | + 'required' => true, |
|
| 1491 | + ), |
|
| 1492 | + ), |
|
| 1493 | + ),'list' => array( |
|
| 1494 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
|
| 1495 | + 'httpMethod' => 'GET', |
|
| 1496 | + 'parameters' => array( |
|
| 1497 | + 'accountId' => array( |
|
| 1498 | + 'location' => 'path', |
|
| 1499 | + 'type' => 'string', |
|
| 1500 | + 'required' => true, |
|
| 1501 | + ), |
|
| 1502 | + 'webPropertyId' => array( |
|
| 1503 | + 'location' => 'path', |
|
| 1504 | + 'type' => 'string', |
|
| 1505 | + 'required' => true, |
|
| 1506 | + ), |
|
| 1507 | + 'profileId' => array( |
|
| 1508 | + 'location' => 'path', |
|
| 1509 | + 'type' => 'string', |
|
| 1510 | + 'required' => true, |
|
| 1511 | + ), |
|
| 1512 | + 'max-results' => array( |
|
| 1513 | + 'location' => 'query', |
|
| 1514 | + 'type' => 'integer', |
|
| 1515 | + ), |
|
| 1516 | + 'start-index' => array( |
|
| 1517 | + 'location' => 'query', |
|
| 1518 | + 'type' => 'integer', |
|
| 1519 | + ), |
|
| 1520 | + ), |
|
| 1521 | + ), |
|
| 1522 | + ) |
|
| 1523 | + ) |
|
| 1524 | + ); |
|
| 1525 | + $this->management_uploads = new Google_Service_Analytics_ManagementUploads_Resource( |
|
| 1526 | + $this, |
|
| 1527 | + $this->serviceName, |
|
| 1528 | + 'uploads', |
|
| 1529 | + array( |
|
| 1530 | + 'methods' => array( |
|
| 1531 | + 'deleteUploadData' => array( |
|
| 1532 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData', |
|
| 1533 | + 'httpMethod' => 'POST', |
|
| 1534 | + 'parameters' => array( |
|
| 1535 | + 'accountId' => array( |
|
| 1536 | + 'location' => 'path', |
|
| 1537 | + 'type' => 'string', |
|
| 1538 | + 'required' => true, |
|
| 1539 | + ), |
|
| 1540 | + 'webPropertyId' => array( |
|
| 1541 | + 'location' => 'path', |
|
| 1542 | + 'type' => 'string', |
|
| 1543 | + 'required' => true, |
|
| 1544 | + ), |
|
| 1545 | + 'customDataSourceId' => array( |
|
| 1546 | + 'location' => 'path', |
|
| 1547 | + 'type' => 'string', |
|
| 1548 | + 'required' => true, |
|
| 1549 | + ), |
|
| 1550 | + ), |
|
| 1551 | + ),'get' => array( |
|
| 1552 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}', |
|
| 1553 | + 'httpMethod' => 'GET', |
|
| 1554 | + 'parameters' => array( |
|
| 1555 | + 'accountId' => array( |
|
| 1556 | + 'location' => 'path', |
|
| 1557 | + 'type' => 'string', |
|
| 1558 | + 'required' => true, |
|
| 1559 | + ), |
|
| 1560 | + 'webPropertyId' => array( |
|
| 1561 | + 'location' => 'path', |
|
| 1562 | + 'type' => 'string', |
|
| 1563 | + 'required' => true, |
|
| 1564 | + ), |
|
| 1565 | + 'customDataSourceId' => array( |
|
| 1566 | + 'location' => 'path', |
|
| 1567 | + 'type' => 'string', |
|
| 1568 | + 'required' => true, |
|
| 1569 | + ), |
|
| 1570 | + 'uploadId' => array( |
|
| 1571 | + 'location' => 'path', |
|
| 1572 | + 'type' => 'string', |
|
| 1573 | + 'required' => true, |
|
| 1574 | + ), |
|
| 1575 | + ), |
|
| 1576 | + ),'list' => array( |
|
| 1577 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
|
| 1578 | + 'httpMethod' => 'GET', |
|
| 1579 | + 'parameters' => array( |
|
| 1580 | + 'accountId' => array( |
|
| 1581 | + 'location' => 'path', |
|
| 1582 | + 'type' => 'string', |
|
| 1583 | + 'required' => true, |
|
| 1584 | + ), |
|
| 1585 | + 'webPropertyId' => array( |
|
| 1586 | + 'location' => 'path', |
|
| 1587 | + 'type' => 'string', |
|
| 1588 | + 'required' => true, |
|
| 1589 | + ), |
|
| 1590 | + 'customDataSourceId' => array( |
|
| 1591 | + 'location' => 'path', |
|
| 1592 | + 'type' => 'string', |
|
| 1593 | + 'required' => true, |
|
| 1594 | + ), |
|
| 1595 | + 'max-results' => array( |
|
| 1596 | + 'location' => 'query', |
|
| 1597 | + 'type' => 'integer', |
|
| 1598 | + ), |
|
| 1599 | + 'start-index' => array( |
|
| 1600 | + 'location' => 'query', |
|
| 1601 | + 'type' => 'integer', |
|
| 1602 | + ), |
|
| 1603 | + ), |
|
| 1604 | + ),'uploadData' => array( |
|
| 1605 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
|
| 1606 | + 'httpMethod' => 'POST', |
|
| 1607 | + 'parameters' => array( |
|
| 1608 | + 'accountId' => array( |
|
| 1609 | + 'location' => 'path', |
|
| 1610 | + 'type' => 'string', |
|
| 1611 | + 'required' => true, |
|
| 1612 | + ), |
|
| 1613 | + 'webPropertyId' => array( |
|
| 1614 | + 'location' => 'path', |
|
| 1615 | + 'type' => 'string', |
|
| 1616 | + 'required' => true, |
|
| 1617 | + ), |
|
| 1618 | + 'customDataSourceId' => array( |
|
| 1619 | + 'location' => 'path', |
|
| 1620 | + 'type' => 'string', |
|
| 1621 | + 'required' => true, |
|
| 1622 | + ), |
|
| 1623 | + ), |
|
| 1624 | + ), |
|
| 1625 | + ) |
|
| 1626 | + ) |
|
| 1627 | + ); |
|
| 1628 | + $this->management_webPropertyAdWordsLinks = new Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource( |
|
| 1629 | + $this, |
|
| 1630 | + $this->serviceName, |
|
| 1631 | + 'webPropertyAdWordsLinks', |
|
| 1632 | + array( |
|
| 1633 | + 'methods' => array( |
|
| 1634 | + 'delete' => array( |
|
| 1635 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1636 | + 'httpMethod' => 'DELETE', |
|
| 1637 | + 'parameters' => array( |
|
| 1638 | + 'accountId' => array( |
|
| 1639 | + 'location' => 'path', |
|
| 1640 | + 'type' => 'string', |
|
| 1641 | + 'required' => true, |
|
| 1642 | + ), |
|
| 1643 | + 'webPropertyId' => array( |
|
| 1644 | + 'location' => 'path', |
|
| 1645 | + 'type' => 'string', |
|
| 1646 | + 'required' => true, |
|
| 1647 | + ), |
|
| 1648 | + 'webPropertyAdWordsLinkId' => array( |
|
| 1649 | + 'location' => 'path', |
|
| 1650 | + 'type' => 'string', |
|
| 1651 | + 'required' => true, |
|
| 1652 | + ), |
|
| 1653 | + ), |
|
| 1654 | + ),'get' => array( |
|
| 1655 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1656 | + 'httpMethod' => 'GET', |
|
| 1657 | + 'parameters' => array( |
|
| 1658 | + 'accountId' => array( |
|
| 1659 | + 'location' => 'path', |
|
| 1660 | + 'type' => 'string', |
|
| 1661 | + 'required' => true, |
|
| 1662 | + ), |
|
| 1663 | + 'webPropertyId' => array( |
|
| 1664 | + 'location' => 'path', |
|
| 1665 | + 'type' => 'string', |
|
| 1666 | + 'required' => true, |
|
| 1667 | + ), |
|
| 1668 | + 'webPropertyAdWordsLinkId' => array( |
|
| 1669 | + 'location' => 'path', |
|
| 1670 | + 'type' => 'string', |
|
| 1671 | + 'required' => true, |
|
| 1672 | + ), |
|
| 1673 | + ), |
|
| 1674 | + ),'insert' => array( |
|
| 1675 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
|
| 1676 | + 'httpMethod' => 'POST', |
|
| 1677 | + 'parameters' => array( |
|
| 1678 | + 'accountId' => array( |
|
| 1679 | + 'location' => 'path', |
|
| 1680 | + 'type' => 'string', |
|
| 1681 | + 'required' => true, |
|
| 1682 | + ), |
|
| 1683 | + 'webPropertyId' => array( |
|
| 1684 | + 'location' => 'path', |
|
| 1685 | + 'type' => 'string', |
|
| 1686 | + 'required' => true, |
|
| 1687 | + ), |
|
| 1688 | + ), |
|
| 1689 | + ),'list' => array( |
|
| 1690 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
|
| 1691 | + 'httpMethod' => 'GET', |
|
| 1692 | + 'parameters' => array( |
|
| 1693 | + 'accountId' => array( |
|
| 1694 | + 'location' => 'path', |
|
| 1695 | + 'type' => 'string', |
|
| 1696 | + 'required' => true, |
|
| 1697 | + ), |
|
| 1698 | + 'webPropertyId' => array( |
|
| 1699 | + 'location' => 'path', |
|
| 1700 | + 'type' => 'string', |
|
| 1701 | + 'required' => true, |
|
| 1702 | + ), |
|
| 1703 | + 'max-results' => array( |
|
| 1704 | + 'location' => 'query', |
|
| 1705 | + 'type' => 'integer', |
|
| 1706 | + ), |
|
| 1707 | + 'start-index' => array( |
|
| 1708 | + 'location' => 'query', |
|
| 1709 | + 'type' => 'integer', |
|
| 1710 | + ), |
|
| 1711 | + ), |
|
| 1712 | + ),'patch' => array( |
|
| 1713 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1714 | + 'httpMethod' => 'PATCH', |
|
| 1715 | + 'parameters' => array( |
|
| 1716 | + 'accountId' => array( |
|
| 1717 | + 'location' => 'path', |
|
| 1718 | + 'type' => 'string', |
|
| 1719 | + 'required' => true, |
|
| 1720 | + ), |
|
| 1721 | + 'webPropertyId' => array( |
|
| 1722 | + 'location' => 'path', |
|
| 1723 | + 'type' => 'string', |
|
| 1724 | + 'required' => true, |
|
| 1725 | + ), |
|
| 1726 | + 'webPropertyAdWordsLinkId' => array( |
|
| 1727 | + 'location' => 'path', |
|
| 1728 | + 'type' => 'string', |
|
| 1729 | + 'required' => true, |
|
| 1730 | + ), |
|
| 1731 | + ), |
|
| 1732 | + ),'update' => array( |
|
| 1733 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
|
| 1734 | + 'httpMethod' => 'PUT', |
|
| 1735 | + 'parameters' => array( |
|
| 1736 | + 'accountId' => array( |
|
| 1737 | + 'location' => 'path', |
|
| 1738 | + 'type' => 'string', |
|
| 1739 | + 'required' => true, |
|
| 1740 | + ), |
|
| 1741 | + 'webPropertyId' => array( |
|
| 1742 | + 'location' => 'path', |
|
| 1743 | + 'type' => 'string', |
|
| 1744 | + 'required' => true, |
|
| 1745 | + ), |
|
| 1746 | + 'webPropertyAdWordsLinkId' => array( |
|
| 1747 | + 'location' => 'path', |
|
| 1748 | + 'type' => 'string', |
|
| 1749 | + 'required' => true, |
|
| 1750 | + ), |
|
| 1751 | + ), |
|
| 1752 | + ), |
|
| 1753 | + ) |
|
| 1754 | + ) |
|
| 1755 | + ); |
|
| 1756 | + $this->management_webproperties = new Google_Service_Analytics_ManagementWebproperties_Resource( |
|
| 1757 | + $this, |
|
| 1758 | + $this->serviceName, |
|
| 1759 | + 'webproperties', |
|
| 1760 | + array( |
|
| 1761 | + 'methods' => array( |
|
| 1762 | + 'get' => array( |
|
| 1763 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1764 | + 'httpMethod' => 'GET', |
|
| 1765 | + 'parameters' => array( |
|
| 1766 | + 'accountId' => array( |
|
| 1767 | + 'location' => 'path', |
|
| 1768 | + 'type' => 'string', |
|
| 1769 | + 'required' => true, |
|
| 1770 | + ), |
|
| 1771 | + 'webPropertyId' => array( |
|
| 1772 | + 'location' => 'path', |
|
| 1773 | + 'type' => 'string', |
|
| 1774 | + 'required' => true, |
|
| 1775 | + ), |
|
| 1776 | + ), |
|
| 1777 | + ),'insert' => array( |
|
| 1778 | + 'path' => 'management/accounts/{accountId}/webproperties', |
|
| 1779 | + 'httpMethod' => 'POST', |
|
| 1780 | + 'parameters' => array( |
|
| 1781 | + 'accountId' => array( |
|
| 1782 | + 'location' => 'path', |
|
| 1783 | + 'type' => 'string', |
|
| 1784 | + 'required' => true, |
|
| 1785 | + ), |
|
| 1786 | + ), |
|
| 1787 | + ),'list' => array( |
|
| 1788 | + 'path' => 'management/accounts/{accountId}/webproperties', |
|
| 1789 | + 'httpMethod' => 'GET', |
|
| 1790 | + 'parameters' => array( |
|
| 1791 | + 'accountId' => array( |
|
| 1792 | + 'location' => 'path', |
|
| 1793 | + 'type' => 'string', |
|
| 1794 | + 'required' => true, |
|
| 1795 | + ), |
|
| 1796 | + 'max-results' => array( |
|
| 1797 | + 'location' => 'query', |
|
| 1798 | + 'type' => 'integer', |
|
| 1799 | + ), |
|
| 1800 | + 'start-index' => array( |
|
| 1801 | + 'location' => 'query', |
|
| 1802 | + 'type' => 'integer', |
|
| 1803 | + ), |
|
| 1804 | + ), |
|
| 1805 | + ),'patch' => array( |
|
| 1806 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1807 | + 'httpMethod' => 'PATCH', |
|
| 1808 | + 'parameters' => array( |
|
| 1809 | + 'accountId' => array( |
|
| 1810 | + 'location' => 'path', |
|
| 1811 | + 'type' => 'string', |
|
| 1812 | + 'required' => true, |
|
| 1813 | + ), |
|
| 1814 | + 'webPropertyId' => array( |
|
| 1815 | + 'location' => 'path', |
|
| 1816 | + 'type' => 'string', |
|
| 1817 | + 'required' => true, |
|
| 1818 | + ), |
|
| 1819 | + ), |
|
| 1820 | + ),'update' => array( |
|
| 1821 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
|
| 1822 | + 'httpMethod' => 'PUT', |
|
| 1823 | + 'parameters' => array( |
|
| 1824 | + 'accountId' => array( |
|
| 1825 | + 'location' => 'path', |
|
| 1826 | + 'type' => 'string', |
|
| 1827 | + 'required' => true, |
|
| 1828 | + ), |
|
| 1829 | + 'webPropertyId' => array( |
|
| 1830 | + 'location' => 'path', |
|
| 1831 | + 'type' => 'string', |
|
| 1832 | + 'required' => true, |
|
| 1833 | + ), |
|
| 1834 | + ), |
|
| 1835 | + ), |
|
| 1836 | + ) |
|
| 1837 | + ) |
|
| 1838 | + ); |
|
| 1839 | + $this->management_webpropertyUserLinks = new Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource( |
|
| 1840 | + $this, |
|
| 1841 | + $this->serviceName, |
|
| 1842 | + 'webpropertyUserLinks', |
|
| 1843 | + array( |
|
| 1844 | + 'methods' => array( |
|
| 1845 | + 'delete' => array( |
|
| 1846 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', |
|
| 1847 | + 'httpMethod' => 'DELETE', |
|
| 1848 | + 'parameters' => array( |
|
| 1849 | + 'accountId' => array( |
|
| 1850 | + 'location' => 'path', |
|
| 1851 | + 'type' => 'string', |
|
| 1852 | + 'required' => true, |
|
| 1853 | + ), |
|
| 1854 | + 'webPropertyId' => array( |
|
| 1855 | + 'location' => 'path', |
|
| 1856 | + 'type' => 'string', |
|
| 1857 | + 'required' => true, |
|
| 1858 | + ), |
|
| 1859 | + 'linkId' => array( |
|
| 1860 | + 'location' => 'path', |
|
| 1861 | + 'type' => 'string', |
|
| 1862 | + 'required' => true, |
|
| 1863 | + ), |
|
| 1864 | + ), |
|
| 1865 | + ),'insert' => array( |
|
| 1866 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
|
| 1867 | + 'httpMethod' => 'POST', |
|
| 1868 | + 'parameters' => array( |
|
| 1869 | + 'accountId' => array( |
|
| 1870 | + 'location' => 'path', |
|
| 1871 | + 'type' => 'string', |
|
| 1872 | + 'required' => true, |
|
| 1873 | + ), |
|
| 1874 | + 'webPropertyId' => array( |
|
| 1875 | + 'location' => 'path', |
|
| 1876 | + 'type' => 'string', |
|
| 1877 | + 'required' => true, |
|
| 1878 | + ), |
|
| 1879 | + ), |
|
| 1880 | + ),'list' => array( |
|
| 1881 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
|
| 1882 | + 'httpMethod' => 'GET', |
|
| 1883 | + 'parameters' => array( |
|
| 1884 | + 'accountId' => array( |
|
| 1885 | + 'location' => 'path', |
|
| 1886 | + 'type' => 'string', |
|
| 1887 | + 'required' => true, |
|
| 1888 | + ), |
|
| 1889 | + 'webPropertyId' => array( |
|
| 1890 | + 'location' => 'path', |
|
| 1891 | + 'type' => 'string', |
|
| 1892 | + 'required' => true, |
|
| 1893 | + ), |
|
| 1894 | + 'max-results' => array( |
|
| 1895 | + 'location' => 'query', |
|
| 1896 | + 'type' => 'integer', |
|
| 1897 | + ), |
|
| 1898 | + 'start-index' => array( |
|
| 1899 | + 'location' => 'query', |
|
| 1900 | + 'type' => 'integer', |
|
| 1901 | + ), |
|
| 1902 | + ), |
|
| 1903 | + ),'update' => array( |
|
| 1904 | + 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', |
|
| 1905 | + 'httpMethod' => 'PUT', |
|
| 1906 | + 'parameters' => array( |
|
| 1907 | + 'accountId' => array( |
|
| 1908 | + 'location' => 'path', |
|
| 1909 | + 'type' => 'string', |
|
| 1910 | + 'required' => true, |
|
| 1911 | + ), |
|
| 1912 | + 'webPropertyId' => array( |
|
| 1913 | + 'location' => 'path', |
|
| 1914 | + 'type' => 'string', |
|
| 1915 | + 'required' => true, |
|
| 1916 | + ), |
|
| 1917 | + 'linkId' => array( |
|
| 1918 | + 'location' => 'path', |
|
| 1919 | + 'type' => 'string', |
|
| 1920 | + 'required' => true, |
|
| 1921 | + ), |
|
| 1922 | + ), |
|
| 1923 | + ), |
|
| 1924 | + ) |
|
| 1925 | + ) |
|
| 1926 | + ); |
|
| 1927 | + $this->metadata_columns = new Google_Service_Analytics_MetadataColumns_Resource( |
|
| 1928 | + $this, |
|
| 1929 | + $this->serviceName, |
|
| 1930 | + 'columns', |
|
| 1931 | + array( |
|
| 1932 | + 'methods' => array( |
|
| 1933 | + 'list' => array( |
|
| 1934 | + 'path' => 'metadata/{reportType}/columns', |
|
| 1935 | + 'httpMethod' => 'GET', |
|
| 1936 | + 'parameters' => array( |
|
| 1937 | + 'reportType' => array( |
|
| 1938 | + 'location' => 'path', |
|
| 1939 | + 'type' => 'string', |
|
| 1940 | + 'required' => true, |
|
| 1941 | + ), |
|
| 1942 | + ), |
|
| 1943 | + ), |
|
| 1944 | + ) |
|
| 1945 | + ) |
|
| 1946 | + ); |
|
| 1947 | + $this->provisioning = new Google_Service_Analytics_Provisioning_Resource( |
|
| 1948 | + $this, |
|
| 1949 | + $this->serviceName, |
|
| 1950 | + 'provisioning', |
|
| 1951 | + array( |
|
| 1952 | + 'methods' => array( |
|
| 1953 | + 'createAccountTicket' => array( |
|
| 1954 | + 'path' => 'provisioning/createAccountTicket', |
|
| 1955 | + 'httpMethod' => 'POST', |
|
| 1956 | + 'parameters' => array(), |
|
| 1957 | + ), |
|
| 1958 | + ) |
|
| 1959 | + ) |
|
| 1960 | + ); |
|
| 1961 | 1961 | } |
| 1962 | 1962 | } |
| 1963 | 1963 | |
@@ -2018,9 +2018,9 @@ discard block |
||
| 2018 | 2018 | */ |
| 2019 | 2019 | public function get($ids, $startDate, $endDate, $metrics, $optParams = array()) |
| 2020 | 2020 | { |
| 2021 | - $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 2022 | - $params = array_merge($params, $optParams); |
|
| 2023 | - return $this->call('get', array($params), "Google_Service_Analytics_GaData"); |
|
| 2021 | + $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 2022 | + $params = array_merge($params, $optParams); |
|
| 2023 | + return $this->call('get', array($params), "Google_Service_Analytics_GaData"); |
|
| 2024 | 2024 | } |
| 2025 | 2025 | } |
| 2026 | 2026 | /** |
@@ -2065,9 +2065,9 @@ discard block |
||
| 2065 | 2065 | */ |
| 2066 | 2066 | public function get($ids, $startDate, $endDate, $metrics, $optParams = array()) |
| 2067 | 2067 | { |
| 2068 | - $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 2069 | - $params = array_merge($params, $optParams); |
|
| 2070 | - return $this->call('get', array($params), "Google_Service_Analytics_McfData"); |
|
| 2068 | + $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 2069 | + $params = array_merge($params, $optParams); |
|
| 2070 | + return $this->call('get', array($params), "Google_Service_Analytics_McfData"); |
|
| 2071 | 2071 | } |
| 2072 | 2072 | } |
| 2073 | 2073 | /** |
@@ -2102,9 +2102,9 @@ discard block |
||
| 2102 | 2102 | */ |
| 2103 | 2103 | public function get($ids, $metrics, $optParams = array()) |
| 2104 | 2104 | { |
| 2105 | - $params = array('ids' => $ids, 'metrics' => $metrics); |
|
| 2106 | - $params = array_merge($params, $optParams); |
|
| 2107 | - return $this->call('get', array($params), "Google_Service_Analytics_RealtimeData"); |
|
| 2105 | + $params = array('ids' => $ids, 'metrics' => $metrics); |
|
| 2106 | + $params = array_merge($params, $optParams); |
|
| 2107 | + return $this->call('get', array($params), "Google_Service_Analytics_RealtimeData"); |
|
| 2108 | 2108 | } |
| 2109 | 2109 | } |
| 2110 | 2110 | |
@@ -2146,9 +2146,9 @@ discard block |
||
| 2146 | 2146 | */ |
| 2147 | 2147 | public function listManagementAccountSummaries($optParams = array()) |
| 2148 | 2148 | { |
| 2149 | - $params = array(); |
|
| 2150 | - $params = array_merge($params, $optParams); |
|
| 2151 | - return $this->call('list', array($params), "Google_Service_Analytics_AccountSummaries"); |
|
| 2149 | + $params = array(); |
|
| 2150 | + $params = array_merge($params, $optParams); |
|
| 2151 | + return $this->call('list', array($params), "Google_Service_Analytics_AccountSummaries"); |
|
| 2152 | 2152 | } |
| 2153 | 2153 | } |
| 2154 | 2154 | /** |
@@ -2171,9 +2171,9 @@ discard block |
||
| 2171 | 2171 | */ |
| 2172 | 2172 | public function delete($accountId, $linkId, $optParams = array()) |
| 2173 | 2173 | { |
| 2174 | - $params = array('accountId' => $accountId, 'linkId' => $linkId); |
|
| 2175 | - $params = array_merge($params, $optParams); |
|
| 2176 | - return $this->call('delete', array($params)); |
|
| 2174 | + $params = array('accountId' => $accountId, 'linkId' => $linkId); |
|
| 2175 | + $params = array_merge($params, $optParams); |
|
| 2176 | + return $this->call('delete', array($params)); |
|
| 2177 | 2177 | } |
| 2178 | 2178 | |
| 2179 | 2179 | /** |
@@ -2186,9 +2186,9 @@ discard block |
||
| 2186 | 2186 | */ |
| 2187 | 2187 | public function insert($accountId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 2188 | 2188 | { |
| 2189 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 2190 | - $params = array_merge($params, $optParams); |
|
| 2191 | - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 2189 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 2190 | + $params = array_merge($params, $optParams); |
|
| 2191 | + return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 2192 | 2192 | } |
| 2193 | 2193 | |
| 2194 | 2194 | /** |
@@ -2207,9 +2207,9 @@ discard block |
||
| 2207 | 2207 | */ |
| 2208 | 2208 | public function listManagementAccountUserLinks($accountId, $optParams = array()) |
| 2209 | 2209 | { |
| 2210 | - $params = array('accountId' => $accountId); |
|
| 2211 | - $params = array_merge($params, $optParams); |
|
| 2212 | - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 2210 | + $params = array('accountId' => $accountId); |
|
| 2211 | + $params = array_merge($params, $optParams); |
|
| 2212 | + return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 2213 | 2213 | } |
| 2214 | 2214 | |
| 2215 | 2215 | /** |
@@ -2224,9 +2224,9 @@ discard block |
||
| 2224 | 2224 | */ |
| 2225 | 2225 | public function update($accountId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 2226 | 2226 | { |
| 2227 | - $params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2228 | - $params = array_merge($params, $optParams); |
|
| 2229 | - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 2227 | + $params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2228 | + $params = array_merge($params, $optParams); |
|
| 2229 | + return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 2230 | 2230 | } |
| 2231 | 2231 | } |
| 2232 | 2232 | /** |
@@ -2255,9 +2255,9 @@ discard block |
||
| 2255 | 2255 | */ |
| 2256 | 2256 | public function listManagementAccounts($optParams = array()) |
| 2257 | 2257 | { |
| 2258 | - $params = array(); |
|
| 2259 | - $params = array_merge($params, $optParams); |
|
| 2260 | - return $this->call('list', array($params), "Google_Service_Analytics_Accounts"); |
|
| 2258 | + $params = array(); |
|
| 2259 | + $params = array_merge($params, $optParams); |
|
| 2260 | + return $this->call('list', array($params), "Google_Service_Analytics_Accounts"); |
|
| 2261 | 2261 | } |
| 2262 | 2262 | } |
| 2263 | 2263 | /** |
@@ -2289,9 +2289,9 @@ discard block |
||
| 2289 | 2289 | */ |
| 2290 | 2290 | public function listManagementCustomDataSources($accountId, $webPropertyId, $optParams = array()) |
| 2291 | 2291 | { |
| 2292 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2293 | - $params = array_merge($params, $optParams); |
|
| 2294 | - return $this->call('list', array($params), "Google_Service_Analytics_CustomDataSources"); |
|
| 2292 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2293 | + $params = array_merge($params, $optParams); |
|
| 2294 | + return $this->call('list', array($params), "Google_Service_Analytics_CustomDataSources"); |
|
| 2295 | 2295 | } |
| 2296 | 2296 | } |
| 2297 | 2297 | /** |
@@ -2317,9 +2317,9 @@ discard block |
||
| 2317 | 2317 | */ |
| 2318 | 2318 | public function get($accountId, $webPropertyId, $customDimensionId, $optParams = array()) |
| 2319 | 2319 | { |
| 2320 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId); |
|
| 2321 | - $params = array_merge($params, $optParams); |
|
| 2322 | - return $this->call('get', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2320 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId); |
|
| 2321 | + $params = array_merge($params, $optParams); |
|
| 2322 | + return $this->call('get', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2323 | 2323 | } |
| 2324 | 2324 | |
| 2325 | 2325 | /** |
@@ -2334,9 +2334,9 @@ discard block |
||
| 2334 | 2334 | */ |
| 2335 | 2335 | public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) |
| 2336 | 2336 | { |
| 2337 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 2338 | - $params = array_merge($params, $optParams); |
|
| 2339 | - return $this->call('insert', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2337 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 2338 | + $params = array_merge($params, $optParams); |
|
| 2339 | + return $this->call('insert', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2340 | 2340 | } |
| 2341 | 2341 | |
| 2342 | 2342 | /** |
@@ -2356,9 +2356,9 @@ discard block |
||
| 2356 | 2356 | */ |
| 2357 | 2357 | public function listManagementCustomDimensions($accountId, $webPropertyId, $optParams = array()) |
| 2358 | 2358 | { |
| 2359 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2360 | - $params = array_merge($params, $optParams); |
|
| 2361 | - return $this->call('list', array($params), "Google_Service_Analytics_CustomDimensions"); |
|
| 2359 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2360 | + $params = array_merge($params, $optParams); |
|
| 2361 | + return $this->call('list', array($params), "Google_Service_Analytics_CustomDimensions"); |
|
| 2362 | 2362 | } |
| 2363 | 2363 | |
| 2364 | 2364 | /** |
@@ -2380,9 +2380,9 @@ discard block |
||
| 2380 | 2380 | */ |
| 2381 | 2381 | public function patch($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) |
| 2382 | 2382 | { |
| 2383 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); |
|
| 2384 | - $params = array_merge($params, $optParams); |
|
| 2385 | - return $this->call('patch', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2383 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); |
|
| 2384 | + $params = array_merge($params, $optParams); |
|
| 2385 | + return $this->call('patch', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2386 | 2386 | } |
| 2387 | 2387 | |
| 2388 | 2388 | /** |
@@ -2403,9 +2403,9 @@ discard block |
||
| 2403 | 2403 | */ |
| 2404 | 2404 | public function update($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array()) |
| 2405 | 2405 | { |
| 2406 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); |
|
| 2407 | - $params = array_merge($params, $optParams); |
|
| 2408 | - return $this->call('update', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2406 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody); |
|
| 2407 | + $params = array_merge($params, $optParams); |
|
| 2408 | + return $this->call('update', array($params), "Google_Service_Analytics_CustomDimension"); |
|
| 2409 | 2409 | } |
| 2410 | 2410 | } |
| 2411 | 2411 | /** |
@@ -2431,9 +2431,9 @@ discard block |
||
| 2431 | 2431 | */ |
| 2432 | 2432 | public function get($accountId, $webPropertyId, $customMetricId, $optParams = array()) |
| 2433 | 2433 | { |
| 2434 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId); |
|
| 2435 | - $params = array_merge($params, $optParams); |
|
| 2436 | - return $this->call('get', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2434 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId); |
|
| 2435 | + $params = array_merge($params, $optParams); |
|
| 2436 | + return $this->call('get', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2437 | 2437 | } |
| 2438 | 2438 | |
| 2439 | 2439 | /** |
@@ -2448,9 +2448,9 @@ discard block |
||
| 2448 | 2448 | */ |
| 2449 | 2449 | public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) |
| 2450 | 2450 | { |
| 2451 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 2452 | - $params = array_merge($params, $optParams); |
|
| 2453 | - return $this->call('insert', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2451 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 2452 | + $params = array_merge($params, $optParams); |
|
| 2453 | + return $this->call('insert', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2454 | 2454 | } |
| 2455 | 2455 | |
| 2456 | 2456 | /** |
@@ -2470,9 +2470,9 @@ discard block |
||
| 2470 | 2470 | */ |
| 2471 | 2471 | public function listManagementCustomMetrics($accountId, $webPropertyId, $optParams = array()) |
| 2472 | 2472 | { |
| 2473 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2474 | - $params = array_merge($params, $optParams); |
|
| 2475 | - return $this->call('list', array($params), "Google_Service_Analytics_CustomMetrics"); |
|
| 2473 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 2474 | + $params = array_merge($params, $optParams); |
|
| 2475 | + return $this->call('list', array($params), "Google_Service_Analytics_CustomMetrics"); |
|
| 2476 | 2476 | } |
| 2477 | 2477 | |
| 2478 | 2478 | /** |
@@ -2493,9 +2493,9 @@ discard block |
||
| 2493 | 2493 | */ |
| 2494 | 2494 | public function patch($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) |
| 2495 | 2495 | { |
| 2496 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); |
|
| 2497 | - $params = array_merge($params, $optParams); |
|
| 2498 | - return $this->call('patch', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2496 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); |
|
| 2497 | + $params = array_merge($params, $optParams); |
|
| 2498 | + return $this->call('patch', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2499 | 2499 | } |
| 2500 | 2500 | |
| 2501 | 2501 | /** |
@@ -2515,9 +2515,9 @@ discard block |
||
| 2515 | 2515 | */ |
| 2516 | 2516 | public function update($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array()) |
| 2517 | 2517 | { |
| 2518 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); |
|
| 2519 | - $params = array_merge($params, $optParams); |
|
| 2520 | - return $this->call('update', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2518 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody); |
|
| 2519 | + $params = array_merge($params, $optParams); |
|
| 2520 | + return $this->call('update', array($params), "Google_Service_Analytics_CustomMetric"); |
|
| 2521 | 2521 | } |
| 2522 | 2522 | } |
| 2523 | 2523 | /** |
@@ -2542,9 +2542,9 @@ discard block |
||
| 2542 | 2542 | */ |
| 2543 | 2543 | public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array()) |
| 2544 | 2544 | { |
| 2545 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); |
|
| 2546 | - $params = array_merge($params, $optParams); |
|
| 2547 | - return $this->call('delete', array($params)); |
|
| 2545 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); |
|
| 2546 | + $params = array_merge($params, $optParams); |
|
| 2547 | + return $this->call('delete', array($params)); |
|
| 2548 | 2548 | } |
| 2549 | 2549 | |
| 2550 | 2550 | /** |
@@ -2559,9 +2559,9 @@ discard block |
||
| 2559 | 2559 | */ |
| 2560 | 2560 | public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array()) |
| 2561 | 2561 | { |
| 2562 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); |
|
| 2563 | - $params = array_merge($params, $optParams); |
|
| 2564 | - return $this->call('get', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2562 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId); |
|
| 2563 | + $params = array_merge($params, $optParams); |
|
| 2564 | + return $this->call('get', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2565 | 2565 | } |
| 2566 | 2566 | |
| 2567 | 2567 | /** |
@@ -2576,9 +2576,9 @@ discard block |
||
| 2576 | 2576 | */ |
| 2577 | 2577 | public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) |
| 2578 | 2578 | { |
| 2579 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2580 | - $params = array_merge($params, $optParams); |
|
| 2581 | - return $this->call('insert', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2579 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2580 | + $params = array_merge($params, $optParams); |
|
| 2581 | + return $this->call('insert', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2582 | 2582 | } |
| 2583 | 2583 | |
| 2584 | 2584 | /** |
@@ -2599,9 +2599,9 @@ discard block |
||
| 2599 | 2599 | */ |
| 2600 | 2600 | public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 2601 | 2601 | { |
| 2602 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2603 | - $params = array_merge($params, $optParams); |
|
| 2604 | - return $this->call('list', array($params), "Google_Service_Analytics_Experiments"); |
|
| 2602 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2603 | + $params = array_merge($params, $optParams); |
|
| 2604 | + return $this->call('list', array($params), "Google_Service_Analytics_Experiments"); |
|
| 2605 | 2605 | } |
| 2606 | 2606 | |
| 2607 | 2607 | /** |
@@ -2618,9 +2618,9 @@ discard block |
||
| 2618 | 2618 | */ |
| 2619 | 2619 | public function patch($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) |
| 2620 | 2620 | { |
| 2621 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); |
|
| 2622 | - $params = array_merge($params, $optParams); |
|
| 2623 | - return $this->call('patch', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2621 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); |
|
| 2622 | + $params = array_merge($params, $optParams); |
|
| 2623 | + return $this->call('patch', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2624 | 2624 | } |
| 2625 | 2625 | |
| 2626 | 2626 | /** |
@@ -2636,9 +2636,9 @@ discard block |
||
| 2636 | 2636 | */ |
| 2637 | 2637 | public function update($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array()) |
| 2638 | 2638 | { |
| 2639 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); |
|
| 2640 | - $params = array_merge($params, $optParams); |
|
| 2641 | - return $this->call('update', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2639 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody); |
|
| 2640 | + $params = array_merge($params, $optParams); |
|
| 2641 | + return $this->call('update', array($params), "Google_Service_Analytics_Experiment"); |
|
| 2642 | 2642 | } |
| 2643 | 2643 | } |
| 2644 | 2644 | /** |
@@ -2662,9 +2662,9 @@ discard block |
||
| 2662 | 2662 | */ |
| 2663 | 2663 | public function delete($accountId, $filterId, $optParams = array()) |
| 2664 | 2664 | { |
| 2665 | - $params = array('accountId' => $accountId, 'filterId' => $filterId); |
|
| 2666 | - $params = array_merge($params, $optParams); |
|
| 2667 | - return $this->call('delete', array($params), "Google_Service_Analytics_Filter"); |
|
| 2665 | + $params = array('accountId' => $accountId, 'filterId' => $filterId); |
|
| 2666 | + $params = array_merge($params, $optParams); |
|
| 2667 | + return $this->call('delete', array($params), "Google_Service_Analytics_Filter"); |
|
| 2668 | 2668 | } |
| 2669 | 2669 | |
| 2670 | 2670 | /** |
@@ -2677,9 +2677,9 @@ discard block |
||
| 2677 | 2677 | */ |
| 2678 | 2678 | public function get($accountId, $filterId, $optParams = array()) |
| 2679 | 2679 | { |
| 2680 | - $params = array('accountId' => $accountId, 'filterId' => $filterId); |
|
| 2681 | - $params = array_merge($params, $optParams); |
|
| 2682 | - return $this->call('get', array($params), "Google_Service_Analytics_Filter"); |
|
| 2680 | + $params = array('accountId' => $accountId, 'filterId' => $filterId); |
|
| 2681 | + $params = array_merge($params, $optParams); |
|
| 2682 | + return $this->call('get', array($params), "Google_Service_Analytics_Filter"); |
|
| 2683 | 2683 | } |
| 2684 | 2684 | |
| 2685 | 2685 | /** |
@@ -2692,9 +2692,9 @@ discard block |
||
| 2692 | 2692 | */ |
| 2693 | 2693 | public function insert($accountId, Google_Service_Analytics_Filter $postBody, $optParams = array()) |
| 2694 | 2694 | { |
| 2695 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 2696 | - $params = array_merge($params, $optParams); |
|
| 2697 | - return $this->call('insert', array($params), "Google_Service_Analytics_Filter"); |
|
| 2695 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 2696 | + $params = array_merge($params, $optParams); |
|
| 2697 | + return $this->call('insert', array($params), "Google_Service_Analytics_Filter"); |
|
| 2698 | 2698 | } |
| 2699 | 2699 | |
| 2700 | 2700 | /** |
@@ -2711,9 +2711,9 @@ discard block |
||
| 2711 | 2711 | */ |
| 2712 | 2712 | public function listManagementFilters($accountId, $optParams = array()) |
| 2713 | 2713 | { |
| 2714 | - $params = array('accountId' => $accountId); |
|
| 2715 | - $params = array_merge($params, $optParams); |
|
| 2716 | - return $this->call('list', array($params), "Google_Service_Analytics_Filters"); |
|
| 2714 | + $params = array('accountId' => $accountId); |
|
| 2715 | + $params = array_merge($params, $optParams); |
|
| 2716 | + return $this->call('list', array($params), "Google_Service_Analytics_Filters"); |
|
| 2717 | 2717 | } |
| 2718 | 2718 | |
| 2719 | 2719 | /** |
@@ -2728,9 +2728,9 @@ discard block |
||
| 2728 | 2728 | */ |
| 2729 | 2729 | public function patch($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array()) |
| 2730 | 2730 | { |
| 2731 | - $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); |
|
| 2732 | - $params = array_merge($params, $optParams); |
|
| 2733 | - return $this->call('patch', array($params), "Google_Service_Analytics_Filter"); |
|
| 2731 | + $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); |
|
| 2732 | + $params = array_merge($params, $optParams); |
|
| 2733 | + return $this->call('patch', array($params), "Google_Service_Analytics_Filter"); |
|
| 2734 | 2734 | } |
| 2735 | 2735 | |
| 2736 | 2736 | /** |
@@ -2744,9 +2744,9 @@ discard block |
||
| 2744 | 2744 | */ |
| 2745 | 2745 | public function update($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array()) |
| 2746 | 2746 | { |
| 2747 | - $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); |
|
| 2748 | - $params = array_merge($params, $optParams); |
|
| 2749 | - return $this->call('update', array($params), "Google_Service_Analytics_Filter"); |
|
| 2747 | + $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody); |
|
| 2748 | + $params = array_merge($params, $optParams); |
|
| 2749 | + return $this->call('update', array($params), "Google_Service_Analytics_Filter"); |
|
| 2750 | 2750 | } |
| 2751 | 2751 | } |
| 2752 | 2752 | /** |
@@ -2772,9 +2772,9 @@ discard block |
||
| 2772 | 2772 | */ |
| 2773 | 2773 | public function get($accountId, $webPropertyId, $profileId, $goalId, $optParams = array()) |
| 2774 | 2774 | { |
| 2775 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId); |
|
| 2776 | - $params = array_merge($params, $optParams); |
|
| 2777 | - return $this->call('get', array($params), "Google_Service_Analytics_Goal"); |
|
| 2775 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId); |
|
| 2776 | + $params = array_merge($params, $optParams); |
|
| 2777 | + return $this->call('get', array($params), "Google_Service_Analytics_Goal"); |
|
| 2778 | 2778 | } |
| 2779 | 2779 | |
| 2780 | 2780 | /** |
@@ -2789,9 +2789,9 @@ discard block |
||
| 2789 | 2789 | */ |
| 2790 | 2790 | public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Goal $postBody, $optParams = array()) |
| 2791 | 2791 | { |
| 2792 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2793 | - $params = array_merge($params, $optParams); |
|
| 2794 | - return $this->call('insert', array($params), "Google_Service_Analytics_Goal"); |
|
| 2792 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2793 | + $params = array_merge($params, $optParams); |
|
| 2794 | + return $this->call('insert', array($params), "Google_Service_Analytics_Goal"); |
|
| 2795 | 2795 | } |
| 2796 | 2796 | |
| 2797 | 2797 | /** |
@@ -2816,9 +2816,9 @@ discard block |
||
| 2816 | 2816 | */ |
| 2817 | 2817 | public function listManagementGoals($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 2818 | 2818 | { |
| 2819 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2820 | - $params = array_merge($params, $optParams); |
|
| 2821 | - return $this->call('list', array($params), "Google_Service_Analytics_Goals"); |
|
| 2819 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2820 | + $params = array_merge($params, $optParams); |
|
| 2821 | + return $this->call('list', array($params), "Google_Service_Analytics_Goals"); |
|
| 2822 | 2822 | } |
| 2823 | 2823 | |
| 2824 | 2824 | /** |
@@ -2835,9 +2835,9 @@ discard block |
||
| 2835 | 2835 | */ |
| 2836 | 2836 | public function patch($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array()) |
| 2837 | 2837 | { |
| 2838 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); |
|
| 2839 | - $params = array_merge($params, $optParams); |
|
| 2840 | - return $this->call('patch', array($params), "Google_Service_Analytics_Goal"); |
|
| 2838 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); |
|
| 2839 | + $params = array_merge($params, $optParams); |
|
| 2840 | + return $this->call('patch', array($params), "Google_Service_Analytics_Goal"); |
|
| 2841 | 2841 | } |
| 2842 | 2842 | |
| 2843 | 2843 | /** |
@@ -2853,9 +2853,9 @@ discard block |
||
| 2853 | 2853 | */ |
| 2854 | 2854 | public function update($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array()) |
| 2855 | 2855 | { |
| 2856 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); |
|
| 2857 | - $params = array_merge($params, $optParams); |
|
| 2858 | - return $this->call('update', array($params), "Google_Service_Analytics_Goal"); |
|
| 2856 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody); |
|
| 2857 | + $params = array_merge($params, $optParams); |
|
| 2858 | + return $this->call('update', array($params), "Google_Service_Analytics_Goal"); |
|
| 2859 | 2859 | } |
| 2860 | 2860 | } |
| 2861 | 2861 | /** |
@@ -2881,9 +2881,9 @@ discard block |
||
| 2881 | 2881 | */ |
| 2882 | 2882 | public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) |
| 2883 | 2883 | { |
| 2884 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 2885 | - $params = array_merge($params, $optParams); |
|
| 2886 | - return $this->call('delete', array($params)); |
|
| 2884 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 2885 | + $params = array_merge($params, $optParams); |
|
| 2886 | + return $this->call('delete', array($params)); |
|
| 2887 | 2887 | } |
| 2888 | 2888 | |
| 2889 | 2889 | /** |
@@ -2899,9 +2899,9 @@ discard block |
||
| 2899 | 2899 | */ |
| 2900 | 2900 | public function get($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) |
| 2901 | 2901 | { |
| 2902 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 2903 | - $params = array_merge($params, $optParams); |
|
| 2904 | - return $this->call('get', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2902 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 2903 | + $params = array_merge($params, $optParams); |
|
| 2904 | + return $this->call('get', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2905 | 2905 | } |
| 2906 | 2906 | |
| 2907 | 2907 | /** |
@@ -2917,9 +2917,9 @@ discard block |
||
| 2917 | 2917 | */ |
| 2918 | 2918 | public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) |
| 2919 | 2919 | { |
| 2920 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2921 | - $params = array_merge($params, $optParams); |
|
| 2922 | - return $this->call('insert', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2920 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 2921 | + $params = array_merge($params, $optParams); |
|
| 2922 | + return $this->call('insert', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2923 | 2923 | } |
| 2924 | 2924 | |
| 2925 | 2925 | /** |
@@ -2943,9 +2943,9 @@ discard block |
||
| 2943 | 2943 | */ |
| 2944 | 2944 | public function listManagementProfileFilterLinks($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 2945 | 2945 | { |
| 2946 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2947 | - $params = array_merge($params, $optParams); |
|
| 2948 | - return $this->call('list', array($params), "Google_Service_Analytics_ProfileFilterLinks"); |
|
| 2946 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 2947 | + $params = array_merge($params, $optParams); |
|
| 2948 | + return $this->call('list', array($params), "Google_Service_Analytics_ProfileFilterLinks"); |
|
| 2949 | 2949 | } |
| 2950 | 2950 | |
| 2951 | 2951 | /** |
@@ -2963,9 +2963,9 @@ discard block |
||
| 2963 | 2963 | */ |
| 2964 | 2964 | public function patch($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) |
| 2965 | 2965 | { |
| 2966 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2967 | - $params = array_merge($params, $optParams); |
|
| 2968 | - return $this->call('patch', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2966 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2967 | + $params = array_merge($params, $optParams); |
|
| 2968 | + return $this->call('patch', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2969 | 2969 | } |
| 2970 | 2970 | |
| 2971 | 2971 | /** |
@@ -2982,9 +2982,9 @@ discard block |
||
| 2982 | 2982 | */ |
| 2983 | 2983 | public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array()) |
| 2984 | 2984 | { |
| 2985 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2986 | - $params = array_merge($params, $optParams); |
|
| 2987 | - return $this->call('update', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2985 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 2986 | + $params = array_merge($params, $optParams); |
|
| 2987 | + return $this->call('update', array($params), "Google_Service_Analytics_ProfileFilterLink"); |
|
| 2988 | 2988 | } |
| 2989 | 2989 | } |
| 2990 | 2990 | /** |
@@ -3009,9 +3009,9 @@ discard block |
||
| 3009 | 3009 | */ |
| 3010 | 3010 | public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array()) |
| 3011 | 3011 | { |
| 3012 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 3013 | - $params = array_merge($params, $optParams); |
|
| 3014 | - return $this->call('delete', array($params)); |
|
| 3012 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId); |
|
| 3013 | + $params = array_merge($params, $optParams); |
|
| 3014 | + return $this->call('delete', array($params)); |
|
| 3015 | 3015 | } |
| 3016 | 3016 | |
| 3017 | 3017 | /** |
@@ -3026,9 +3026,9 @@ discard block |
||
| 3026 | 3026 | */ |
| 3027 | 3027 | public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 3028 | 3028 | { |
| 3029 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3030 | - $params = array_merge($params, $optParams); |
|
| 3031 | - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3029 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3030 | + $params = array_merge($params, $optParams); |
|
| 3031 | + return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3032 | 3032 | } |
| 3033 | 3033 | |
| 3034 | 3034 | /** |
@@ -3054,9 +3054,9 @@ discard block |
||
| 3054 | 3054 | */ |
| 3055 | 3055 | public function listManagementProfileUserLinks($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 3056 | 3056 | { |
| 3057 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3058 | - $params = array_merge($params, $optParams); |
|
| 3059 | - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 3057 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3058 | + $params = array_merge($params, $optParams); |
|
| 3059 | + return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 3060 | 3060 | } |
| 3061 | 3061 | |
| 3062 | 3062 | /** |
@@ -3073,9 +3073,9 @@ discard block |
||
| 3073 | 3073 | */ |
| 3074 | 3074 | public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 3075 | 3075 | { |
| 3076 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 3077 | - $params = array_merge($params, $optParams); |
|
| 3078 | - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3076 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 3077 | + $params = array_merge($params, $optParams); |
|
| 3078 | + return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3079 | 3079 | } |
| 3080 | 3080 | } |
| 3081 | 3081 | /** |
@@ -3100,9 +3100,9 @@ discard block |
||
| 3100 | 3100 | */ |
| 3101 | 3101 | public function delete($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 3102 | 3102 | { |
| 3103 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3104 | - $params = array_merge($params, $optParams); |
|
| 3105 | - return $this->call('delete', array($params)); |
|
| 3103 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3104 | + $params = array_merge($params, $optParams); |
|
| 3105 | + return $this->call('delete', array($params)); |
|
| 3106 | 3106 | } |
| 3107 | 3107 | |
| 3108 | 3108 | /** |
@@ -3116,9 +3116,9 @@ discard block |
||
| 3116 | 3116 | */ |
| 3117 | 3117 | public function get($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 3118 | 3118 | { |
| 3119 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3120 | - $params = array_merge($params, $optParams); |
|
| 3121 | - return $this->call('get', array($params), "Google_Service_Analytics_Profile"); |
|
| 3119 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3120 | + $params = array_merge($params, $optParams); |
|
| 3121 | + return $this->call('get', array($params), "Google_Service_Analytics_Profile"); |
|
| 3122 | 3122 | } |
| 3123 | 3123 | |
| 3124 | 3124 | /** |
@@ -3133,9 +3133,9 @@ discard block |
||
| 3133 | 3133 | */ |
| 3134 | 3134 | public function insert($accountId, $webPropertyId, Google_Service_Analytics_Profile $postBody, $optParams = array()) |
| 3135 | 3135 | { |
| 3136 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3137 | - $params = array_merge($params, $optParams); |
|
| 3138 | - return $this->call('insert', array($params), "Google_Service_Analytics_Profile"); |
|
| 3136 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3137 | + $params = array_merge($params, $optParams); |
|
| 3138 | + return $this->call('insert', array($params), "Google_Service_Analytics_Profile"); |
|
| 3139 | 3139 | } |
| 3140 | 3140 | |
| 3141 | 3141 | /** |
@@ -3158,9 +3158,9 @@ discard block |
||
| 3158 | 3158 | */ |
| 3159 | 3159 | public function listManagementProfiles($accountId, $webPropertyId, $optParams = array()) |
| 3160 | 3160 | { |
| 3161 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3162 | - $params = array_merge($params, $optParams); |
|
| 3163 | - return $this->call('list', array($params), "Google_Service_Analytics_Profiles"); |
|
| 3161 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3162 | + $params = array_merge($params, $optParams); |
|
| 3163 | + return $this->call('list', array($params), "Google_Service_Analytics_Profiles"); |
|
| 3164 | 3164 | } |
| 3165 | 3165 | |
| 3166 | 3166 | /** |
@@ -3177,9 +3177,9 @@ discard block |
||
| 3177 | 3177 | */ |
| 3178 | 3178 | public function patch($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array()) |
| 3179 | 3179 | { |
| 3180 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3181 | - $params = array_merge($params, $optParams); |
|
| 3182 | - return $this->call('patch', array($params), "Google_Service_Analytics_Profile"); |
|
| 3180 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3181 | + $params = array_merge($params, $optParams); |
|
| 3182 | + return $this->call('patch', array($params), "Google_Service_Analytics_Profile"); |
|
| 3183 | 3183 | } |
| 3184 | 3184 | |
| 3185 | 3185 | /** |
@@ -3195,9 +3195,9 @@ discard block |
||
| 3195 | 3195 | */ |
| 3196 | 3196 | public function update($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array()) |
| 3197 | 3197 | { |
| 3198 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3199 | - $params = array_merge($params, $optParams); |
|
| 3200 | - return $this->call('update', array($params), "Google_Service_Analytics_Profile"); |
|
| 3198 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3199 | + $params = array_merge($params, $optParams); |
|
| 3200 | + return $this->call('update', array($params), "Google_Service_Analytics_Profile"); |
|
| 3201 | 3201 | } |
| 3202 | 3202 | } |
| 3203 | 3203 | /** |
@@ -3226,9 +3226,9 @@ discard block |
||
| 3226 | 3226 | */ |
| 3227 | 3227 | public function listManagementSegments($optParams = array()) |
| 3228 | 3228 | { |
| 3229 | - $params = array(); |
|
| 3230 | - $params = array_merge($params, $optParams); |
|
| 3231 | - return $this->call('list', array($params), "Google_Service_Analytics_Segments"); |
|
| 3229 | + $params = array(); |
|
| 3230 | + $params = array_merge($params, $optParams); |
|
| 3231 | + return $this->call('list', array($params), "Google_Service_Analytics_Segments"); |
|
| 3232 | 3232 | } |
| 3233 | 3233 | } |
| 3234 | 3234 | /** |
@@ -3255,9 +3255,9 @@ discard block |
||
| 3255 | 3255 | */ |
| 3256 | 3256 | public function get($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = array()) |
| 3257 | 3257 | { |
| 3258 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId); |
|
| 3259 | - $params = array_merge($params, $optParams); |
|
| 3260 | - return $this->call('get', array($params), "Google_Service_Analytics_UnsampledReport"); |
|
| 3258 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId); |
|
| 3259 | + $params = array_merge($params, $optParams); |
|
| 3260 | + return $this->call('get', array($params), "Google_Service_Analytics_UnsampledReport"); |
|
| 3261 | 3261 | } |
| 3262 | 3262 | |
| 3263 | 3263 | /** |
@@ -3274,9 +3274,9 @@ discard block |
||
| 3274 | 3274 | */ |
| 3275 | 3275 | public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_UnsampledReport $postBody, $optParams = array()) |
| 3276 | 3276 | { |
| 3277 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3278 | - $params = array_merge($params, $optParams); |
|
| 3279 | - return $this->call('insert', array($params), "Google_Service_Analytics_UnsampledReport"); |
|
| 3277 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody); |
|
| 3278 | + $params = array_merge($params, $optParams); |
|
| 3279 | + return $this->call('insert', array($params), "Google_Service_Analytics_UnsampledReport"); |
|
| 3280 | 3280 | } |
| 3281 | 3281 | |
| 3282 | 3282 | /** |
@@ -3300,9 +3300,9 @@ discard block |
||
| 3300 | 3300 | */ |
| 3301 | 3301 | public function listManagementUnsampledReports($accountId, $webPropertyId, $profileId, $optParams = array()) |
| 3302 | 3302 | { |
| 3303 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3304 | - $params = array_merge($params, $optParams); |
|
| 3305 | - return $this->call('list', array($params), "Google_Service_Analytics_UnsampledReports"); |
|
| 3303 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId); |
|
| 3304 | + $params = array_merge($params, $optParams); |
|
| 3305 | + return $this->call('list', array($params), "Google_Service_Analytics_UnsampledReports"); |
|
| 3306 | 3306 | } |
| 3307 | 3307 | } |
| 3308 | 3308 | /** |
@@ -3328,9 +3328,9 @@ discard block |
||
| 3328 | 3328 | */ |
| 3329 | 3329 | public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array()) |
| 3330 | 3330 | { |
| 3331 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody); |
|
| 3332 | - $params = array_merge($params, $optParams); |
|
| 3333 | - return $this->call('deleteUploadData', array($params)); |
|
| 3331 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody); |
|
| 3332 | + $params = array_merge($params, $optParams); |
|
| 3333 | + return $this->call('deleteUploadData', array($params)); |
|
| 3334 | 3334 | } |
| 3335 | 3335 | |
| 3336 | 3336 | /** |
@@ -3346,9 +3346,9 @@ discard block |
||
| 3346 | 3346 | */ |
| 3347 | 3347 | public function get($accountId, $webPropertyId, $customDataSourceId, $uploadId, $optParams = array()) |
| 3348 | 3348 | { |
| 3349 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId); |
|
| 3350 | - $params = array_merge($params, $optParams); |
|
| 3351 | - return $this->call('get', array($params), "Google_Service_Analytics_Upload"); |
|
| 3349 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId); |
|
| 3350 | + $params = array_merge($params, $optParams); |
|
| 3351 | + return $this->call('get', array($params), "Google_Service_Analytics_Upload"); |
|
| 3352 | 3352 | } |
| 3353 | 3353 | |
| 3354 | 3354 | /** |
@@ -3369,9 +3369,9 @@ discard block |
||
| 3369 | 3369 | */ |
| 3370 | 3370 | public function listManagementUploads($accountId, $webPropertyId, $customDataSourceId, $optParams = array()) |
| 3371 | 3371 | { |
| 3372 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); |
|
| 3373 | - $params = array_merge($params, $optParams); |
|
| 3374 | - return $this->call('list', array($params), "Google_Service_Analytics_Uploads"); |
|
| 3372 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); |
|
| 3373 | + $params = array_merge($params, $optParams); |
|
| 3374 | + return $this->call('list', array($params), "Google_Service_Analytics_Uploads"); |
|
| 3375 | 3375 | } |
| 3376 | 3376 | |
| 3377 | 3377 | /** |
@@ -3387,9 +3387,9 @@ discard block |
||
| 3387 | 3387 | */ |
| 3388 | 3388 | public function uploadData($accountId, $webPropertyId, $customDataSourceId, $optParams = array()) |
| 3389 | 3389 | { |
| 3390 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); |
|
| 3391 | - $params = array_merge($params, $optParams); |
|
| 3392 | - return $this->call('uploadData', array($params), "Google_Service_Analytics_Upload"); |
|
| 3390 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId); |
|
| 3391 | + $params = array_merge($params, $optParams); |
|
| 3392 | + return $this->call('uploadData', array($params), "Google_Service_Analytics_Upload"); |
|
| 3393 | 3393 | } |
| 3394 | 3394 | } |
| 3395 | 3395 | /** |
@@ -3414,9 +3414,9 @@ discard block |
||
| 3414 | 3414 | */ |
| 3415 | 3415 | public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array()) |
| 3416 | 3416 | { |
| 3417 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); |
|
| 3418 | - $params = array_merge($params, $optParams); |
|
| 3419 | - return $this->call('delete', array($params)); |
|
| 3417 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); |
|
| 3418 | + $params = array_merge($params, $optParams); |
|
| 3419 | + return $this->call('delete', array($params)); |
|
| 3420 | 3420 | } |
| 3421 | 3421 | |
| 3422 | 3422 | /** |
@@ -3433,9 +3433,9 @@ discard block |
||
| 3433 | 3433 | */ |
| 3434 | 3434 | public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array()) |
| 3435 | 3435 | { |
| 3436 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); |
|
| 3437 | - $params = array_merge($params, $optParams); |
|
| 3438 | - return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3436 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId); |
|
| 3437 | + $params = array_merge($params, $optParams); |
|
| 3438 | + return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3439 | 3439 | } |
| 3440 | 3440 | |
| 3441 | 3441 | /** |
@@ -3450,9 +3450,9 @@ discard block |
||
| 3450 | 3450 | */ |
| 3451 | 3451 | public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) |
| 3452 | 3452 | { |
| 3453 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3454 | - $params = array_merge($params, $optParams); |
|
| 3455 | - return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3453 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3454 | + $params = array_merge($params, $optParams); |
|
| 3455 | + return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3456 | 3456 | } |
| 3457 | 3457 | |
| 3458 | 3458 | /** |
@@ -3474,9 +3474,9 @@ discard block |
||
| 3474 | 3474 | */ |
| 3475 | 3475 | public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = array()) |
| 3476 | 3476 | { |
| 3477 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3478 | - $params = array_merge($params, $optParams); |
|
| 3479 | - return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks"); |
|
| 3477 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3478 | + $params = array_merge($params, $optParams); |
|
| 3479 | + return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks"); |
|
| 3480 | 3480 | } |
| 3481 | 3481 | |
| 3482 | 3482 | /** |
@@ -3494,9 +3494,9 @@ discard block |
||
| 3494 | 3494 | */ |
| 3495 | 3495 | public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) |
| 3496 | 3496 | { |
| 3497 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); |
|
| 3498 | - $params = array_merge($params, $optParams); |
|
| 3499 | - return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3497 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); |
|
| 3498 | + $params = array_merge($params, $optParams); |
|
| 3499 | + return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3500 | 3500 | } |
| 3501 | 3501 | |
| 3502 | 3502 | /** |
@@ -3514,9 +3514,9 @@ discard block |
||
| 3514 | 3514 | */ |
| 3515 | 3515 | public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array()) |
| 3516 | 3516 | { |
| 3517 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); |
|
| 3518 | - $params = array_merge($params, $optParams); |
|
| 3519 | - return $this->call('update', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3517 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody); |
|
| 3518 | + $params = array_merge($params, $optParams); |
|
| 3519 | + return $this->call('update', array($params), "Google_Service_Analytics_EntityAdWordsLink"); |
|
| 3520 | 3520 | } |
| 3521 | 3521 | } |
| 3522 | 3522 | /** |
@@ -3540,9 +3540,9 @@ discard block |
||
| 3540 | 3540 | */ |
| 3541 | 3541 | public function get($accountId, $webPropertyId, $optParams = array()) |
| 3542 | 3542 | { |
| 3543 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3544 | - $params = array_merge($params, $optParams); |
|
| 3545 | - return $this->call('get', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3543 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3544 | + $params = array_merge($params, $optParams); |
|
| 3545 | + return $this->call('get', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3546 | 3546 | } |
| 3547 | 3547 | |
| 3548 | 3548 | /** |
@@ -3557,9 +3557,9 @@ discard block |
||
| 3557 | 3557 | */ |
| 3558 | 3558 | public function insert($accountId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) |
| 3559 | 3559 | { |
| 3560 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 3561 | - $params = array_merge($params, $optParams); |
|
| 3562 | - return $this->call('insert', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3560 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 3561 | + $params = array_merge($params, $optParams); |
|
| 3562 | + return $this->call('insert', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3563 | 3563 | } |
| 3564 | 3564 | |
| 3565 | 3565 | /** |
@@ -3579,9 +3579,9 @@ discard block |
||
| 3579 | 3579 | */ |
| 3580 | 3580 | public function listManagementWebproperties($accountId, $optParams = array()) |
| 3581 | 3581 | { |
| 3582 | - $params = array('accountId' => $accountId); |
|
| 3583 | - $params = array_merge($params, $optParams); |
|
| 3584 | - return $this->call('list', array($params), "Google_Service_Analytics_Webproperties"); |
|
| 3582 | + $params = array('accountId' => $accountId); |
|
| 3583 | + $params = array_merge($params, $optParams); |
|
| 3584 | + return $this->call('list', array($params), "Google_Service_Analytics_Webproperties"); |
|
| 3585 | 3585 | } |
| 3586 | 3586 | |
| 3587 | 3587 | /** |
@@ -3596,9 +3596,9 @@ discard block |
||
| 3596 | 3596 | */ |
| 3597 | 3597 | public function patch($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) |
| 3598 | 3598 | { |
| 3599 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3600 | - $params = array_merge($params, $optParams); |
|
| 3601 | - return $this->call('patch', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3599 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3600 | + $params = array_merge($params, $optParams); |
|
| 3601 | + return $this->call('patch', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3602 | 3602 | } |
| 3603 | 3603 | |
| 3604 | 3604 | /** |
@@ -3612,9 +3612,9 @@ discard block |
||
| 3612 | 3612 | */ |
| 3613 | 3613 | public function update($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array()) |
| 3614 | 3614 | { |
| 3615 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3616 | - $params = array_merge($params, $optParams); |
|
| 3617 | - return $this->call('update', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3615 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3616 | + $params = array_merge($params, $optParams); |
|
| 3617 | + return $this->call('update', array($params), "Google_Service_Analytics_Webproperty"); |
|
| 3618 | 3618 | } |
| 3619 | 3619 | } |
| 3620 | 3620 | /** |
@@ -3638,9 +3638,9 @@ discard block |
||
| 3638 | 3638 | */ |
| 3639 | 3639 | public function delete($accountId, $webPropertyId, $linkId, $optParams = array()) |
| 3640 | 3640 | { |
| 3641 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId); |
|
| 3642 | - $params = array_merge($params, $optParams); |
|
| 3643 | - return $this->call('delete', array($params)); |
|
| 3641 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId); |
|
| 3642 | + $params = array_merge($params, $optParams); |
|
| 3643 | + return $this->call('delete', array($params)); |
|
| 3644 | 3644 | } |
| 3645 | 3645 | |
| 3646 | 3646 | /** |
@@ -3654,9 +3654,9 @@ discard block |
||
| 3654 | 3654 | */ |
| 3655 | 3655 | public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 3656 | 3656 | { |
| 3657 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3658 | - $params = array_merge($params, $optParams); |
|
| 3659 | - return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3657 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody); |
|
| 3658 | + $params = array_merge($params, $optParams); |
|
| 3659 | + return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3660 | 3660 | } |
| 3661 | 3661 | |
| 3662 | 3662 | /** |
@@ -3678,9 +3678,9 @@ discard block |
||
| 3678 | 3678 | */ |
| 3679 | 3679 | public function listManagementWebpropertyUserLinks($accountId, $webPropertyId, $optParams = array()) |
| 3680 | 3680 | { |
| 3681 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3682 | - $params = array_merge($params, $optParams); |
|
| 3683 | - return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 3681 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId); |
|
| 3682 | + $params = array_merge($params, $optParams); |
|
| 3683 | + return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks"); |
|
| 3684 | 3684 | } |
| 3685 | 3685 | |
| 3686 | 3686 | /** |
@@ -3697,9 +3697,9 @@ discard block |
||
| 3697 | 3697 | */ |
| 3698 | 3698 | public function update($accountId, $webPropertyId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array()) |
| 3699 | 3699 | { |
| 3700 | - $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 3701 | - $params = array_merge($params, $optParams); |
|
| 3702 | - return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3700 | + $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody); |
|
| 3701 | + $params = array_merge($params, $optParams); |
|
| 3702 | + return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink"); |
|
| 3703 | 3703 | } |
| 3704 | 3704 | } |
| 3705 | 3705 | |
@@ -3736,9 +3736,9 @@ discard block |
||
| 3736 | 3736 | */ |
| 3737 | 3737 | public function listMetadataColumns($reportType, $optParams = array()) |
| 3738 | 3738 | { |
| 3739 | - $params = array('reportType' => $reportType); |
|
| 3740 | - $params = array_merge($params, $optParams); |
|
| 3741 | - return $this->call('list', array($params), "Google_Service_Analytics_Columns"); |
|
| 3739 | + $params = array('reportType' => $reportType); |
|
| 3740 | + $params = array_merge($params, $optParams); |
|
| 3741 | + return $this->call('list', array($params), "Google_Service_Analytics_Columns"); |
|
| 3742 | 3742 | } |
| 3743 | 3743 | } |
| 3744 | 3744 | |
@@ -3762,9 +3762,9 @@ discard block |
||
| 3762 | 3762 | */ |
| 3763 | 3763 | public function createAccountTicket(Google_Service_Analytics_AccountTicket $postBody, $optParams = array()) |
| 3764 | 3764 | { |
| 3765 | - $params = array('postBody' => $postBody); |
|
| 3766 | - $params = array_merge($params, $optParams); |
|
| 3767 | - return $this->call('createAccountTicket', array($params), "Google_Service_Analytics_AccountTicket"); |
|
| 3765 | + $params = array('postBody' => $postBody); |
|
| 3766 | + $params = array_merge($params, $optParams); |
|
| 3767 | + return $this->call('createAccountTicket', array($params), "Google_Service_Analytics_AccountTicket"); |
|
| 3768 | 3768 | } |
| 3769 | 3769 | } |
| 3770 | 3770 | |
@@ -3789,67 +3789,67 @@ discard block |
||
| 3789 | 3789 | |
| 3790 | 3790 | public function setChildLink(Google_Service_Analytics_AccountChildLink $childLink) |
| 3791 | 3791 | { |
| 3792 | - $this->childLink = $childLink; |
|
| 3792 | + $this->childLink = $childLink; |
|
| 3793 | 3793 | } |
| 3794 | 3794 | public function getChildLink() |
| 3795 | 3795 | { |
| 3796 | - return $this->childLink; |
|
| 3796 | + return $this->childLink; |
|
| 3797 | 3797 | } |
| 3798 | 3798 | public function setCreated($created) |
| 3799 | 3799 | { |
| 3800 | - $this->created = $created; |
|
| 3800 | + $this->created = $created; |
|
| 3801 | 3801 | } |
| 3802 | 3802 | public function getCreated() |
| 3803 | 3803 | { |
| 3804 | - return $this->created; |
|
| 3804 | + return $this->created; |
|
| 3805 | 3805 | } |
| 3806 | 3806 | public function setId($id) |
| 3807 | 3807 | { |
| 3808 | - $this->id = $id; |
|
| 3808 | + $this->id = $id; |
|
| 3809 | 3809 | } |
| 3810 | 3810 | public function getId() |
| 3811 | 3811 | { |
| 3812 | - return $this->id; |
|
| 3812 | + return $this->id; |
|
| 3813 | 3813 | } |
| 3814 | 3814 | public function setKind($kind) |
| 3815 | 3815 | { |
| 3816 | - $this->kind = $kind; |
|
| 3816 | + $this->kind = $kind; |
|
| 3817 | 3817 | } |
| 3818 | 3818 | public function getKind() |
| 3819 | 3819 | { |
| 3820 | - return $this->kind; |
|
| 3820 | + return $this->kind; |
|
| 3821 | 3821 | } |
| 3822 | 3822 | public function setName($name) |
| 3823 | 3823 | { |
| 3824 | - $this->name = $name; |
|
| 3824 | + $this->name = $name; |
|
| 3825 | 3825 | } |
| 3826 | 3826 | public function getName() |
| 3827 | 3827 | { |
| 3828 | - return $this->name; |
|
| 3828 | + return $this->name; |
|
| 3829 | 3829 | } |
| 3830 | 3830 | public function setPermissions(Google_Service_Analytics_AccountPermissions $permissions) |
| 3831 | 3831 | { |
| 3832 | - $this->permissions = $permissions; |
|
| 3832 | + $this->permissions = $permissions; |
|
| 3833 | 3833 | } |
| 3834 | 3834 | public function getPermissions() |
| 3835 | 3835 | { |
| 3836 | - return $this->permissions; |
|
| 3836 | + return $this->permissions; |
|
| 3837 | 3837 | } |
| 3838 | 3838 | public function setSelfLink($selfLink) |
| 3839 | 3839 | { |
| 3840 | - $this->selfLink = $selfLink; |
|
| 3840 | + $this->selfLink = $selfLink; |
|
| 3841 | 3841 | } |
| 3842 | 3842 | public function getSelfLink() |
| 3843 | 3843 | { |
| 3844 | - return $this->selfLink; |
|
| 3844 | + return $this->selfLink; |
|
| 3845 | 3845 | } |
| 3846 | 3846 | public function setUpdated($updated) |
| 3847 | 3847 | { |
| 3848 | - $this->updated = $updated; |
|
| 3848 | + $this->updated = $updated; |
|
| 3849 | 3849 | } |
| 3850 | 3850 | public function getUpdated() |
| 3851 | 3851 | { |
| 3852 | - return $this->updated; |
|
| 3852 | + return $this->updated; |
|
| 3853 | 3853 | } |
| 3854 | 3854 | } |
| 3855 | 3855 | |
@@ -3863,19 +3863,19 @@ discard block |
||
| 3863 | 3863 | |
| 3864 | 3864 | public function setHref($href) |
| 3865 | 3865 | { |
| 3866 | - $this->href = $href; |
|
| 3866 | + $this->href = $href; |
|
| 3867 | 3867 | } |
| 3868 | 3868 | public function getHref() |
| 3869 | 3869 | { |
| 3870 | - return $this->href; |
|
| 3870 | + return $this->href; |
|
| 3871 | 3871 | } |
| 3872 | 3872 | public function setType($type) |
| 3873 | 3873 | { |
| 3874 | - $this->type = $type; |
|
| 3874 | + $this->type = $type; |
|
| 3875 | 3875 | } |
| 3876 | 3876 | public function getType() |
| 3877 | 3877 | { |
| 3878 | - return $this->type; |
|
| 3878 | + return $this->type; |
|
| 3879 | 3879 | } |
| 3880 | 3880 | } |
| 3881 | 3881 | |
@@ -3889,11 +3889,11 @@ discard block |
||
| 3889 | 3889 | |
| 3890 | 3890 | public function setEffective($effective) |
| 3891 | 3891 | { |
| 3892 | - $this->effective = $effective; |
|
| 3892 | + $this->effective = $effective; |
|
| 3893 | 3893 | } |
| 3894 | 3894 | public function getEffective() |
| 3895 | 3895 | { |
| 3896 | - return $this->effective; |
|
| 3896 | + return $this->effective; |
|
| 3897 | 3897 | } |
| 3898 | 3898 | } |
| 3899 | 3899 | |
@@ -3909,35 +3909,35 @@ discard block |
||
| 3909 | 3909 | |
| 3910 | 3910 | public function setHref($href) |
| 3911 | 3911 | { |
| 3912 | - $this->href = $href; |
|
| 3912 | + $this->href = $href; |
|
| 3913 | 3913 | } |
| 3914 | 3914 | public function getHref() |
| 3915 | 3915 | { |
| 3916 | - return $this->href; |
|
| 3916 | + return $this->href; |
|
| 3917 | 3917 | } |
| 3918 | 3918 | public function setId($id) |
| 3919 | 3919 | { |
| 3920 | - $this->id = $id; |
|
| 3920 | + $this->id = $id; |
|
| 3921 | 3921 | } |
| 3922 | 3922 | public function getId() |
| 3923 | 3923 | { |
| 3924 | - return $this->id; |
|
| 3924 | + return $this->id; |
|
| 3925 | 3925 | } |
| 3926 | 3926 | public function setKind($kind) |
| 3927 | 3927 | { |
| 3928 | - $this->kind = $kind; |
|
| 3928 | + $this->kind = $kind; |
|
| 3929 | 3929 | } |
| 3930 | 3930 | public function getKind() |
| 3931 | 3931 | { |
| 3932 | - return $this->kind; |
|
| 3932 | + return $this->kind; |
|
| 3933 | 3933 | } |
| 3934 | 3934 | public function setName($name) |
| 3935 | 3935 | { |
| 3936 | - $this->name = $name; |
|
| 3936 | + $this->name = $name; |
|
| 3937 | 3937 | } |
| 3938 | 3938 | public function getName() |
| 3939 | 3939 | { |
| 3940 | - return $this->name; |
|
| 3940 | + return $this->name; |
|
| 3941 | 3941 | } |
| 3942 | 3942 | } |
| 3943 | 3943 | |
@@ -3959,67 +3959,67 @@ discard block |
||
| 3959 | 3959 | |
| 3960 | 3960 | public function setItems($items) |
| 3961 | 3961 | { |
| 3962 | - $this->items = $items; |
|
| 3962 | + $this->items = $items; |
|
| 3963 | 3963 | } |
| 3964 | 3964 | public function getItems() |
| 3965 | 3965 | { |
| 3966 | - return $this->items; |
|
| 3966 | + return $this->items; |
|
| 3967 | 3967 | } |
| 3968 | 3968 | public function setItemsPerPage($itemsPerPage) |
| 3969 | 3969 | { |
| 3970 | - $this->itemsPerPage = $itemsPerPage; |
|
| 3970 | + $this->itemsPerPage = $itemsPerPage; |
|
| 3971 | 3971 | } |
| 3972 | 3972 | public function getItemsPerPage() |
| 3973 | 3973 | { |
| 3974 | - return $this->itemsPerPage; |
|
| 3974 | + return $this->itemsPerPage; |
|
| 3975 | 3975 | } |
| 3976 | 3976 | public function setKind($kind) |
| 3977 | 3977 | { |
| 3978 | - $this->kind = $kind; |
|
| 3978 | + $this->kind = $kind; |
|
| 3979 | 3979 | } |
| 3980 | 3980 | public function getKind() |
| 3981 | 3981 | { |
| 3982 | - return $this->kind; |
|
| 3982 | + return $this->kind; |
|
| 3983 | 3983 | } |
| 3984 | 3984 | public function setNextLink($nextLink) |
| 3985 | 3985 | { |
| 3986 | - $this->nextLink = $nextLink; |
|
| 3986 | + $this->nextLink = $nextLink; |
|
| 3987 | 3987 | } |
| 3988 | 3988 | public function getNextLink() |
| 3989 | 3989 | { |
| 3990 | - return $this->nextLink; |
|
| 3990 | + return $this->nextLink; |
|
| 3991 | 3991 | } |
| 3992 | 3992 | public function setPreviousLink($previousLink) |
| 3993 | 3993 | { |
| 3994 | - $this->previousLink = $previousLink; |
|
| 3994 | + $this->previousLink = $previousLink; |
|
| 3995 | 3995 | } |
| 3996 | 3996 | public function getPreviousLink() |
| 3997 | 3997 | { |
| 3998 | - return $this->previousLink; |
|
| 3998 | + return $this->previousLink; |
|
| 3999 | 3999 | } |
| 4000 | 4000 | public function setStartIndex($startIndex) |
| 4001 | 4001 | { |
| 4002 | - $this->startIndex = $startIndex; |
|
| 4002 | + $this->startIndex = $startIndex; |
|
| 4003 | 4003 | } |
| 4004 | 4004 | public function getStartIndex() |
| 4005 | 4005 | { |
| 4006 | - return $this->startIndex; |
|
| 4006 | + return $this->startIndex; |
|
| 4007 | 4007 | } |
| 4008 | 4008 | public function setTotalResults($totalResults) |
| 4009 | 4009 | { |
| 4010 | - $this->totalResults = $totalResults; |
|
| 4010 | + $this->totalResults = $totalResults; |
|
| 4011 | 4011 | } |
| 4012 | 4012 | public function getTotalResults() |
| 4013 | 4013 | { |
| 4014 | - return $this->totalResults; |
|
| 4014 | + return $this->totalResults; |
|
| 4015 | 4015 | } |
| 4016 | 4016 | public function setUsername($username) |
| 4017 | 4017 | { |
| 4018 | - $this->username = $username; |
|
| 4018 | + $this->username = $username; |
|
| 4019 | 4019 | } |
| 4020 | 4020 | public function getUsername() |
| 4021 | 4021 | { |
| 4022 | - return $this->username; |
|
| 4022 | + return $this->username; |
|
| 4023 | 4023 | } |
| 4024 | 4024 | } |
| 4025 | 4025 | |
@@ -4037,35 +4037,35 @@ discard block |
||
| 4037 | 4037 | |
| 4038 | 4038 | public function setId($id) |
| 4039 | 4039 | { |
| 4040 | - $this->id = $id; |
|
| 4040 | + $this->id = $id; |
|
| 4041 | 4041 | } |
| 4042 | 4042 | public function getId() |
| 4043 | 4043 | { |
| 4044 | - return $this->id; |
|
| 4044 | + return $this->id; |
|
| 4045 | 4045 | } |
| 4046 | 4046 | public function setKind($kind) |
| 4047 | 4047 | { |
| 4048 | - $this->kind = $kind; |
|
| 4048 | + $this->kind = $kind; |
|
| 4049 | 4049 | } |
| 4050 | 4050 | public function getKind() |
| 4051 | 4051 | { |
| 4052 | - return $this->kind; |
|
| 4052 | + return $this->kind; |
|
| 4053 | 4053 | } |
| 4054 | 4054 | public function setName($name) |
| 4055 | 4055 | { |
| 4056 | - $this->name = $name; |
|
| 4056 | + $this->name = $name; |
|
| 4057 | 4057 | } |
| 4058 | 4058 | public function getName() |
| 4059 | 4059 | { |
| 4060 | - return $this->name; |
|
| 4060 | + return $this->name; |
|
| 4061 | 4061 | } |
| 4062 | 4062 | public function setWebProperties($webProperties) |
| 4063 | 4063 | { |
| 4064 | - $this->webProperties = $webProperties; |
|
| 4064 | + $this->webProperties = $webProperties; |
|
| 4065 | 4065 | } |
| 4066 | 4066 | public function getWebProperties() |
| 4067 | 4067 | { |
| 4068 | - return $this->webProperties; |
|
| 4068 | + return $this->webProperties; |
|
| 4069 | 4069 | } |
| 4070 | 4070 | } |
| 4071 | 4071 | |
@@ -4086,51 +4086,51 @@ discard block |
||
| 4086 | 4086 | |
| 4087 | 4087 | public function setAccount(Google_Service_Analytics_Account $account) |
| 4088 | 4088 | { |
| 4089 | - $this->account = $account; |
|
| 4089 | + $this->account = $account; |
|
| 4090 | 4090 | } |
| 4091 | 4091 | public function getAccount() |
| 4092 | 4092 | { |
| 4093 | - return $this->account; |
|
| 4093 | + return $this->account; |
|
| 4094 | 4094 | } |
| 4095 | 4095 | public function setId($id) |
| 4096 | 4096 | { |
| 4097 | - $this->id = $id; |
|
| 4097 | + $this->id = $id; |
|
| 4098 | 4098 | } |
| 4099 | 4099 | public function getId() |
| 4100 | 4100 | { |
| 4101 | - return $this->id; |
|
| 4101 | + return $this->id; |
|
| 4102 | 4102 | } |
| 4103 | 4103 | public function setKind($kind) |
| 4104 | 4104 | { |
| 4105 | - $this->kind = $kind; |
|
| 4105 | + $this->kind = $kind; |
|
| 4106 | 4106 | } |
| 4107 | 4107 | public function getKind() |
| 4108 | 4108 | { |
| 4109 | - return $this->kind; |
|
| 4109 | + return $this->kind; |
|
| 4110 | 4110 | } |
| 4111 | 4111 | public function setProfile(Google_Service_Analytics_Profile $profile) |
| 4112 | 4112 | { |
| 4113 | - $this->profile = $profile; |
|
| 4113 | + $this->profile = $profile; |
|
| 4114 | 4114 | } |
| 4115 | 4115 | public function getProfile() |
| 4116 | 4116 | { |
| 4117 | - return $this->profile; |
|
| 4117 | + return $this->profile; |
|
| 4118 | 4118 | } |
| 4119 | 4119 | public function setRedirectUri($redirectUri) |
| 4120 | 4120 | { |
| 4121 | - $this->redirectUri = $redirectUri; |
|
| 4121 | + $this->redirectUri = $redirectUri; |
|
| 4122 | 4122 | } |
| 4123 | 4123 | public function getRedirectUri() |
| 4124 | 4124 | { |
| 4125 | - return $this->redirectUri; |
|
| 4125 | + return $this->redirectUri; |
|
| 4126 | 4126 | } |
| 4127 | 4127 | public function setWebproperty(Google_Service_Analytics_Webproperty $webproperty) |
| 4128 | 4128 | { |
| 4129 | - $this->webproperty = $webproperty; |
|
| 4129 | + $this->webproperty = $webproperty; |
|
| 4130 | 4130 | } |
| 4131 | 4131 | public function getWebproperty() |
| 4132 | 4132 | { |
| 4133 | - return $this->webproperty; |
|
| 4133 | + return $this->webproperty; |
|
| 4134 | 4134 | } |
| 4135 | 4135 | } |
| 4136 | 4136 | |
@@ -4152,67 +4152,67 @@ discard block |
||
| 4152 | 4152 | |
| 4153 | 4153 | public function setItems($items) |
| 4154 | 4154 | { |
| 4155 | - $this->items = $items; |
|
| 4155 | + $this->items = $items; |
|
| 4156 | 4156 | } |
| 4157 | 4157 | public function getItems() |
| 4158 | 4158 | { |
| 4159 | - return $this->items; |
|
| 4159 | + return $this->items; |
|
| 4160 | 4160 | } |
| 4161 | 4161 | public function setItemsPerPage($itemsPerPage) |
| 4162 | 4162 | { |
| 4163 | - $this->itemsPerPage = $itemsPerPage; |
|
| 4163 | + $this->itemsPerPage = $itemsPerPage; |
|
| 4164 | 4164 | } |
| 4165 | 4165 | public function getItemsPerPage() |
| 4166 | 4166 | { |
| 4167 | - return $this->itemsPerPage; |
|
| 4167 | + return $this->itemsPerPage; |
|
| 4168 | 4168 | } |
| 4169 | 4169 | public function setKind($kind) |
| 4170 | 4170 | { |
| 4171 | - $this->kind = $kind; |
|
| 4171 | + $this->kind = $kind; |
|
| 4172 | 4172 | } |
| 4173 | 4173 | public function getKind() |
| 4174 | 4174 | { |
| 4175 | - return $this->kind; |
|
| 4175 | + return $this->kind; |
|
| 4176 | 4176 | } |
| 4177 | 4177 | public function setNextLink($nextLink) |
| 4178 | 4178 | { |
| 4179 | - $this->nextLink = $nextLink; |
|
| 4179 | + $this->nextLink = $nextLink; |
|
| 4180 | 4180 | } |
| 4181 | 4181 | public function getNextLink() |
| 4182 | 4182 | { |
| 4183 | - return $this->nextLink; |
|
| 4183 | + return $this->nextLink; |
|
| 4184 | 4184 | } |
| 4185 | 4185 | public function setPreviousLink($previousLink) |
| 4186 | 4186 | { |
| 4187 | - $this->previousLink = $previousLink; |
|
| 4187 | + $this->previousLink = $previousLink; |
|
| 4188 | 4188 | } |
| 4189 | 4189 | public function getPreviousLink() |
| 4190 | 4190 | { |
| 4191 | - return $this->previousLink; |
|
| 4191 | + return $this->previousLink; |
|
| 4192 | 4192 | } |
| 4193 | 4193 | public function setStartIndex($startIndex) |
| 4194 | 4194 | { |
| 4195 | - $this->startIndex = $startIndex; |
|
| 4195 | + $this->startIndex = $startIndex; |
|
| 4196 | 4196 | } |
| 4197 | 4197 | public function getStartIndex() |
| 4198 | 4198 | { |
| 4199 | - return $this->startIndex; |
|
| 4199 | + return $this->startIndex; |
|
| 4200 | 4200 | } |
| 4201 | 4201 | public function setTotalResults($totalResults) |
| 4202 | 4202 | { |
| 4203 | - $this->totalResults = $totalResults; |
|
| 4203 | + $this->totalResults = $totalResults; |
|
| 4204 | 4204 | } |
| 4205 | 4205 | public function getTotalResults() |
| 4206 | 4206 | { |
| 4207 | - return $this->totalResults; |
|
| 4207 | + return $this->totalResults; |
|
| 4208 | 4208 | } |
| 4209 | 4209 | public function setUsername($username) |
| 4210 | 4210 | { |
| 4211 | - $this->username = $username; |
|
| 4211 | + $this->username = $username; |
|
| 4212 | 4212 | } |
| 4213 | 4213 | public function getUsername() |
| 4214 | 4214 | { |
| 4215 | - return $this->username; |
|
| 4215 | + return $this->username; |
|
| 4216 | 4216 | } |
| 4217 | 4217 | } |
| 4218 | 4218 | |
@@ -4227,27 +4227,27 @@ discard block |
||
| 4227 | 4227 | |
| 4228 | 4228 | public function setAutoTaggingEnabled($autoTaggingEnabled) |
| 4229 | 4229 | { |
| 4230 | - $this->autoTaggingEnabled = $autoTaggingEnabled; |
|
| 4230 | + $this->autoTaggingEnabled = $autoTaggingEnabled; |
|
| 4231 | 4231 | } |
| 4232 | 4232 | public function getAutoTaggingEnabled() |
| 4233 | 4233 | { |
| 4234 | - return $this->autoTaggingEnabled; |
|
| 4234 | + return $this->autoTaggingEnabled; |
|
| 4235 | 4235 | } |
| 4236 | 4236 | public function setCustomerId($customerId) |
| 4237 | 4237 | { |
| 4238 | - $this->customerId = $customerId; |
|
| 4238 | + $this->customerId = $customerId; |
|
| 4239 | 4239 | } |
| 4240 | 4240 | public function getCustomerId() |
| 4241 | 4241 | { |
| 4242 | - return $this->customerId; |
|
| 4242 | + return $this->customerId; |
|
| 4243 | 4243 | } |
| 4244 | 4244 | public function setKind($kind) |
| 4245 | 4245 | { |
| 4246 | - $this->kind = $kind; |
|
| 4246 | + $this->kind = $kind; |
|
| 4247 | 4247 | } |
| 4248 | 4248 | public function getKind() |
| 4249 | 4249 | { |
| 4250 | - return $this->kind; |
|
| 4250 | + return $this->kind; |
|
| 4251 | 4251 | } |
| 4252 | 4252 | } |
| 4253 | 4253 | |
@@ -4261,11 +4261,11 @@ discard block |
||
| 4261 | 4261 | |
| 4262 | 4262 | public function setCustomDataImportUids($customDataImportUids) |
| 4263 | 4263 | { |
| 4264 | - $this->customDataImportUids = $customDataImportUids; |
|
| 4264 | + $this->customDataImportUids = $customDataImportUids; |
|
| 4265 | 4265 | } |
| 4266 | 4266 | public function getCustomDataImportUids() |
| 4267 | 4267 | { |
| 4268 | - return $this->customDataImportUids; |
|
| 4268 | + return $this->customDataImportUids; |
|
| 4269 | 4269 | } |
| 4270 | 4270 | } |
| 4271 | 4271 | |
@@ -4280,27 +4280,27 @@ discard block |
||
| 4280 | 4280 | |
| 4281 | 4281 | public function setAttributes($attributes) |
| 4282 | 4282 | { |
| 4283 | - $this->attributes = $attributes; |
|
| 4283 | + $this->attributes = $attributes; |
|
| 4284 | 4284 | } |
| 4285 | 4285 | public function getAttributes() |
| 4286 | 4286 | { |
| 4287 | - return $this->attributes; |
|
| 4287 | + return $this->attributes; |
|
| 4288 | 4288 | } |
| 4289 | 4289 | public function setId($id) |
| 4290 | 4290 | { |
| 4291 | - $this->id = $id; |
|
| 4291 | + $this->id = $id; |
|
| 4292 | 4292 | } |
| 4293 | 4293 | public function getId() |
| 4294 | 4294 | { |
| 4295 | - return $this->id; |
|
| 4295 | + return $this->id; |
|
| 4296 | 4296 | } |
| 4297 | 4297 | public function setKind($kind) |
| 4298 | 4298 | { |
| 4299 | - $this->kind = $kind; |
|
| 4299 | + $this->kind = $kind; |
|
| 4300 | 4300 | } |
| 4301 | 4301 | public function getKind() |
| 4302 | 4302 | { |
| 4303 | - return $this->kind; |
|
| 4303 | + return $this->kind; |
|
| 4304 | 4304 | } |
| 4305 | 4305 | } |
| 4306 | 4306 | |
@@ -4323,43 +4323,43 @@ discard block |
||
| 4323 | 4323 | |
| 4324 | 4324 | public function setAttributeNames($attributeNames) |
| 4325 | 4325 | { |
| 4326 | - $this->attributeNames = $attributeNames; |
|
| 4326 | + $this->attributeNames = $attributeNames; |
|
| 4327 | 4327 | } |
| 4328 | 4328 | public function getAttributeNames() |
| 4329 | 4329 | { |
| 4330 | - return $this->attributeNames; |
|
| 4330 | + return $this->attributeNames; |
|
| 4331 | 4331 | } |
| 4332 | 4332 | public function setEtag($etag) |
| 4333 | 4333 | { |
| 4334 | - $this->etag = $etag; |
|
| 4334 | + $this->etag = $etag; |
|
| 4335 | 4335 | } |
| 4336 | 4336 | public function getEtag() |
| 4337 | 4337 | { |
| 4338 | - return $this->etag; |
|
| 4338 | + return $this->etag; |
|
| 4339 | 4339 | } |
| 4340 | 4340 | public function setItems($items) |
| 4341 | 4341 | { |
| 4342 | - $this->items = $items; |
|
| 4342 | + $this->items = $items; |
|
| 4343 | 4343 | } |
| 4344 | 4344 | public function getItems() |
| 4345 | 4345 | { |
| 4346 | - return $this->items; |
|
| 4346 | + return $this->items; |
|
| 4347 | 4347 | } |
| 4348 | 4348 | public function setKind($kind) |
| 4349 | 4349 | { |
| 4350 | - $this->kind = $kind; |
|
| 4350 | + $this->kind = $kind; |
|
| 4351 | 4351 | } |
| 4352 | 4352 | public function getKind() |
| 4353 | 4353 | { |
| 4354 | - return $this->kind; |
|
| 4354 | + return $this->kind; |
|
| 4355 | 4355 | } |
| 4356 | 4356 | public function setTotalResults($totalResults) |
| 4357 | 4357 | { |
| 4358 | - $this->totalResults = $totalResults; |
|
| 4358 | + $this->totalResults = $totalResults; |
|
| 4359 | 4359 | } |
| 4360 | 4360 | public function getTotalResults() |
| 4361 | 4361 | { |
| 4362 | - return $this->totalResults; |
|
| 4362 | + return $this->totalResults; |
|
| 4363 | 4363 | } |
| 4364 | 4364 | } |
| 4365 | 4365 | |
@@ -4389,123 +4389,123 @@ discard block |
||
| 4389 | 4389 | |
| 4390 | 4390 | public function setAccountId($accountId) |
| 4391 | 4391 | { |
| 4392 | - $this->accountId = $accountId; |
|
| 4392 | + $this->accountId = $accountId; |
|
| 4393 | 4393 | } |
| 4394 | 4394 | public function getAccountId() |
| 4395 | 4395 | { |
| 4396 | - return $this->accountId; |
|
| 4396 | + return $this->accountId; |
|
| 4397 | 4397 | } |
| 4398 | 4398 | public function setChildLink(Google_Service_Analytics_CustomDataSourceChildLink $childLink) |
| 4399 | 4399 | { |
| 4400 | - $this->childLink = $childLink; |
|
| 4400 | + $this->childLink = $childLink; |
|
| 4401 | 4401 | } |
| 4402 | 4402 | public function getChildLink() |
| 4403 | 4403 | { |
| 4404 | - return $this->childLink; |
|
| 4404 | + return $this->childLink; |
|
| 4405 | 4405 | } |
| 4406 | 4406 | public function setCreated($created) |
| 4407 | 4407 | { |
| 4408 | - $this->created = $created; |
|
| 4408 | + $this->created = $created; |
|
| 4409 | 4409 | } |
| 4410 | 4410 | public function getCreated() |
| 4411 | 4411 | { |
| 4412 | - return $this->created; |
|
| 4412 | + return $this->created; |
|
| 4413 | 4413 | } |
| 4414 | 4414 | public function setDescription($description) |
| 4415 | 4415 | { |
| 4416 | - $this->description = $description; |
|
| 4416 | + $this->description = $description; |
|
| 4417 | 4417 | } |
| 4418 | 4418 | public function getDescription() |
| 4419 | 4419 | { |
| 4420 | - return $this->description; |
|
| 4420 | + return $this->description; |
|
| 4421 | 4421 | } |
| 4422 | 4422 | public function setId($id) |
| 4423 | 4423 | { |
| 4424 | - $this->id = $id; |
|
| 4424 | + $this->id = $id; |
|
| 4425 | 4425 | } |
| 4426 | 4426 | public function getId() |
| 4427 | 4427 | { |
| 4428 | - return $this->id; |
|
| 4428 | + return $this->id; |
|
| 4429 | 4429 | } |
| 4430 | 4430 | public function setImportBehavior($importBehavior) |
| 4431 | 4431 | { |
| 4432 | - $this->importBehavior = $importBehavior; |
|
| 4432 | + $this->importBehavior = $importBehavior; |
|
| 4433 | 4433 | } |
| 4434 | 4434 | public function getImportBehavior() |
| 4435 | 4435 | { |
| 4436 | - return $this->importBehavior; |
|
| 4436 | + return $this->importBehavior; |
|
| 4437 | 4437 | } |
| 4438 | 4438 | public function setKind($kind) |
| 4439 | 4439 | { |
| 4440 | - $this->kind = $kind; |
|
| 4440 | + $this->kind = $kind; |
|
| 4441 | 4441 | } |
| 4442 | 4442 | public function getKind() |
| 4443 | 4443 | { |
| 4444 | - return $this->kind; |
|
| 4444 | + return $this->kind; |
|
| 4445 | 4445 | } |
| 4446 | 4446 | public function setName($name) |
| 4447 | 4447 | { |
| 4448 | - $this->name = $name; |
|
| 4448 | + $this->name = $name; |
|
| 4449 | 4449 | } |
| 4450 | 4450 | public function getName() |
| 4451 | 4451 | { |
| 4452 | - return $this->name; |
|
| 4452 | + return $this->name; |
|
| 4453 | 4453 | } |
| 4454 | 4454 | public function setParentLink(Google_Service_Analytics_CustomDataSourceParentLink $parentLink) |
| 4455 | 4455 | { |
| 4456 | - $this->parentLink = $parentLink; |
|
| 4456 | + $this->parentLink = $parentLink; |
|
| 4457 | 4457 | } |
| 4458 | 4458 | public function getParentLink() |
| 4459 | 4459 | { |
| 4460 | - return $this->parentLink; |
|
| 4460 | + return $this->parentLink; |
|
| 4461 | 4461 | } |
| 4462 | 4462 | public function setProfilesLinked($profilesLinked) |
| 4463 | 4463 | { |
| 4464 | - $this->profilesLinked = $profilesLinked; |
|
| 4464 | + $this->profilesLinked = $profilesLinked; |
|
| 4465 | 4465 | } |
| 4466 | 4466 | public function getProfilesLinked() |
| 4467 | 4467 | { |
| 4468 | - return $this->profilesLinked; |
|
| 4468 | + return $this->profilesLinked; |
|
| 4469 | 4469 | } |
| 4470 | 4470 | public function setSelfLink($selfLink) |
| 4471 | 4471 | { |
| 4472 | - $this->selfLink = $selfLink; |
|
| 4472 | + $this->selfLink = $selfLink; |
|
| 4473 | 4473 | } |
| 4474 | 4474 | public function getSelfLink() |
| 4475 | 4475 | { |
| 4476 | - return $this->selfLink; |
|
| 4476 | + return $this->selfLink; |
|
| 4477 | 4477 | } |
| 4478 | 4478 | public function setType($type) |
| 4479 | 4479 | { |
| 4480 | - $this->type = $type; |
|
| 4480 | + $this->type = $type; |
|
| 4481 | 4481 | } |
| 4482 | 4482 | public function getType() |
| 4483 | 4483 | { |
| 4484 | - return $this->type; |
|
| 4484 | + return $this->type; |
|
| 4485 | 4485 | } |
| 4486 | 4486 | public function setUpdated($updated) |
| 4487 | 4487 | { |
| 4488 | - $this->updated = $updated; |
|
| 4488 | + $this->updated = $updated; |
|
| 4489 | 4489 | } |
| 4490 | 4490 | public function getUpdated() |
| 4491 | 4491 | { |
| 4492 | - return $this->updated; |
|
| 4492 | + return $this->updated; |
|
| 4493 | 4493 | } |
| 4494 | 4494 | public function setUploadType($uploadType) |
| 4495 | 4495 | { |
| 4496 | - $this->uploadType = $uploadType; |
|
| 4496 | + $this->uploadType = $uploadType; |
|
| 4497 | 4497 | } |
| 4498 | 4498 | public function getUploadType() |
| 4499 | 4499 | { |
| 4500 | - return $this->uploadType; |
|
| 4500 | + return $this->uploadType; |
|
| 4501 | 4501 | } |
| 4502 | 4502 | public function setWebPropertyId($webPropertyId) |
| 4503 | 4503 | { |
| 4504 | - $this->webPropertyId = $webPropertyId; |
|
| 4504 | + $this->webPropertyId = $webPropertyId; |
|
| 4505 | 4505 | } |
| 4506 | 4506 | public function getWebPropertyId() |
| 4507 | 4507 | { |
| 4508 | - return $this->webPropertyId; |
|
| 4508 | + return $this->webPropertyId; |
|
| 4509 | 4509 | } |
| 4510 | 4510 | } |
| 4511 | 4511 | |
@@ -4519,19 +4519,19 @@ discard block |
||
| 4519 | 4519 | |
| 4520 | 4520 | public function setHref($href) |
| 4521 | 4521 | { |
| 4522 | - $this->href = $href; |
|
| 4522 | + $this->href = $href; |
|
| 4523 | 4523 | } |
| 4524 | 4524 | public function getHref() |
| 4525 | 4525 | { |
| 4526 | - return $this->href; |
|
| 4526 | + return $this->href; |
|
| 4527 | 4527 | } |
| 4528 | 4528 | public function setType($type) |
| 4529 | 4529 | { |
| 4530 | - $this->type = $type; |
|
| 4530 | + $this->type = $type; |
|
| 4531 | 4531 | } |
| 4532 | 4532 | public function getType() |
| 4533 | 4533 | { |
| 4534 | - return $this->type; |
|
| 4534 | + return $this->type; |
|
| 4535 | 4535 | } |
| 4536 | 4536 | } |
| 4537 | 4537 | |
@@ -4545,19 +4545,19 @@ discard block |
||
| 4545 | 4545 | |
| 4546 | 4546 | public function setHref($href) |
| 4547 | 4547 | { |
| 4548 | - $this->href = $href; |
|
| 4548 | + $this->href = $href; |
|
| 4549 | 4549 | } |
| 4550 | 4550 | public function getHref() |
| 4551 | 4551 | { |
| 4552 | - return $this->href; |
|
| 4552 | + return $this->href; |
|
| 4553 | 4553 | } |
| 4554 | 4554 | public function setType($type) |
| 4555 | 4555 | { |
| 4556 | - $this->type = $type; |
|
| 4556 | + $this->type = $type; |
|
| 4557 | 4557 | } |
| 4558 | 4558 | public function getType() |
| 4559 | 4559 | { |
| 4560 | - return $this->type; |
|
| 4560 | + return $this->type; |
|
| 4561 | 4561 | } |
| 4562 | 4562 | } |
| 4563 | 4563 | |
@@ -4579,67 +4579,67 @@ discard block |
||
| 4579 | 4579 | |
| 4580 | 4580 | public function setItems($items) |
| 4581 | 4581 | { |
| 4582 | - $this->items = $items; |
|
| 4582 | + $this->items = $items; |
|
| 4583 | 4583 | } |
| 4584 | 4584 | public function getItems() |
| 4585 | 4585 | { |
| 4586 | - return $this->items; |
|
| 4586 | + return $this->items; |
|
| 4587 | 4587 | } |
| 4588 | 4588 | public function setItemsPerPage($itemsPerPage) |
| 4589 | 4589 | { |
| 4590 | - $this->itemsPerPage = $itemsPerPage; |
|
| 4590 | + $this->itemsPerPage = $itemsPerPage; |
|
| 4591 | 4591 | } |
| 4592 | 4592 | public function getItemsPerPage() |
| 4593 | 4593 | { |
| 4594 | - return $this->itemsPerPage; |
|
| 4594 | + return $this->itemsPerPage; |
|
| 4595 | 4595 | } |
| 4596 | 4596 | public function setKind($kind) |
| 4597 | 4597 | { |
| 4598 | - $this->kind = $kind; |
|
| 4598 | + $this->kind = $kind; |
|
| 4599 | 4599 | } |
| 4600 | 4600 | public function getKind() |
| 4601 | 4601 | { |
| 4602 | - return $this->kind; |
|
| 4602 | + return $this->kind; |
|
| 4603 | 4603 | } |
| 4604 | 4604 | public function setNextLink($nextLink) |
| 4605 | 4605 | { |
| 4606 | - $this->nextLink = $nextLink; |
|
| 4606 | + $this->nextLink = $nextLink; |
|
| 4607 | 4607 | } |
| 4608 | 4608 | public function getNextLink() |
| 4609 | 4609 | { |
| 4610 | - return $this->nextLink; |
|
| 4610 | + return $this->nextLink; |
|
| 4611 | 4611 | } |
| 4612 | 4612 | public function setPreviousLink($previousLink) |
| 4613 | 4613 | { |
| 4614 | - $this->previousLink = $previousLink; |
|
| 4614 | + $this->previousLink = $previousLink; |
|
| 4615 | 4615 | } |
| 4616 | 4616 | public function getPreviousLink() |
| 4617 | 4617 | { |
| 4618 | - return $this->previousLink; |
|
| 4618 | + return $this->previousLink; |
|
| 4619 | 4619 | } |
| 4620 | 4620 | public function setStartIndex($startIndex) |
| 4621 | 4621 | { |
| 4622 | - $this->startIndex = $startIndex; |
|
| 4622 | + $this->startIndex = $startIndex; |
|
| 4623 | 4623 | } |
| 4624 | 4624 | public function getStartIndex() |
| 4625 | 4625 | { |
| 4626 | - return $this->startIndex; |
|
| 4626 | + return $this->startIndex; |
|
| 4627 | 4627 | } |
| 4628 | 4628 | public function setTotalResults($totalResults) |
| 4629 | 4629 | { |
| 4630 | - $this->totalResults = $totalResults; |
|
| 4630 | + $this->totalResults = $totalResults; |
|
| 4631 | 4631 | } |
| 4632 | 4632 | public function getTotalResults() |
| 4633 | 4633 | { |
| 4634 | - return $this->totalResults; |
|
| 4634 | + return $this->totalResults; |
|
| 4635 | 4635 | } |
| 4636 | 4636 | public function setUsername($username) |
| 4637 | 4637 | { |
| 4638 | - $this->username = $username; |
|
| 4638 | + $this->username = $username; |
|
| 4639 | 4639 | } |
| 4640 | 4640 | public function getUsername() |
| 4641 | 4641 | { |
| 4642 | - return $this->username; |
|
| 4642 | + return $this->username; |
|
| 4643 | 4643 | } |
| 4644 | 4644 | } |
| 4645 | 4645 | |
@@ -4664,99 +4664,99 @@ discard block |
||
| 4664 | 4664 | |
| 4665 | 4665 | public function setAccountId($accountId) |
| 4666 | 4666 | { |
| 4667 | - $this->accountId = $accountId; |
|
| 4667 | + $this->accountId = $accountId; |
|
| 4668 | 4668 | } |
| 4669 | 4669 | public function getAccountId() |
| 4670 | 4670 | { |
| 4671 | - return $this->accountId; |
|
| 4671 | + return $this->accountId; |
|
| 4672 | 4672 | } |
| 4673 | 4673 | public function setActive($active) |
| 4674 | 4674 | { |
| 4675 | - $this->active = $active; |
|
| 4675 | + $this->active = $active; |
|
| 4676 | 4676 | } |
| 4677 | 4677 | public function getActive() |
| 4678 | 4678 | { |
| 4679 | - return $this->active; |
|
| 4679 | + return $this->active; |
|
| 4680 | 4680 | } |
| 4681 | 4681 | public function setCreated($created) |
| 4682 | 4682 | { |
| 4683 | - $this->created = $created; |
|
| 4683 | + $this->created = $created; |
|
| 4684 | 4684 | } |
| 4685 | 4685 | public function getCreated() |
| 4686 | 4686 | { |
| 4687 | - return $this->created; |
|
| 4687 | + return $this->created; |
|
| 4688 | 4688 | } |
| 4689 | 4689 | public function setId($id) |
| 4690 | 4690 | { |
| 4691 | - $this->id = $id; |
|
| 4691 | + $this->id = $id; |
|
| 4692 | 4692 | } |
| 4693 | 4693 | public function getId() |
| 4694 | 4694 | { |
| 4695 | - return $this->id; |
|
| 4695 | + return $this->id; |
|
| 4696 | 4696 | } |
| 4697 | 4697 | public function setIndex($index) |
| 4698 | 4698 | { |
| 4699 | - $this->index = $index; |
|
| 4699 | + $this->index = $index; |
|
| 4700 | 4700 | } |
| 4701 | 4701 | public function getIndex() |
| 4702 | 4702 | { |
| 4703 | - return $this->index; |
|
| 4703 | + return $this->index; |
|
| 4704 | 4704 | } |
| 4705 | 4705 | public function setKind($kind) |
| 4706 | 4706 | { |
| 4707 | - $this->kind = $kind; |
|
| 4707 | + $this->kind = $kind; |
|
| 4708 | 4708 | } |
| 4709 | 4709 | public function getKind() |
| 4710 | 4710 | { |
| 4711 | - return $this->kind; |
|
| 4711 | + return $this->kind; |
|
| 4712 | 4712 | } |
| 4713 | 4713 | public function setName($name) |
| 4714 | 4714 | { |
| 4715 | - $this->name = $name; |
|
| 4715 | + $this->name = $name; |
|
| 4716 | 4716 | } |
| 4717 | 4717 | public function getName() |
| 4718 | 4718 | { |
| 4719 | - return $this->name; |
|
| 4719 | + return $this->name; |
|
| 4720 | 4720 | } |
| 4721 | 4721 | public function setParentLink(Google_Service_Analytics_CustomDimensionParentLink $parentLink) |
| 4722 | 4722 | { |
| 4723 | - $this->parentLink = $parentLink; |
|
| 4723 | + $this->parentLink = $parentLink; |
|
| 4724 | 4724 | } |
| 4725 | 4725 | public function getParentLink() |
| 4726 | 4726 | { |
| 4727 | - return $this->parentLink; |
|
| 4727 | + return $this->parentLink; |
|
| 4728 | 4728 | } |
| 4729 | 4729 | public function setScope($scope) |
| 4730 | 4730 | { |
| 4731 | - $this->scope = $scope; |
|
| 4731 | + $this->scope = $scope; |
|
| 4732 | 4732 | } |
| 4733 | 4733 | public function getScope() |
| 4734 | 4734 | { |
| 4735 | - return $this->scope; |
|
| 4735 | + return $this->scope; |
|
| 4736 | 4736 | } |
| 4737 | 4737 | public function setSelfLink($selfLink) |
| 4738 | 4738 | { |
| 4739 | - $this->selfLink = $selfLink; |
|
| 4739 | + $this->selfLink = $selfLink; |
|
| 4740 | 4740 | } |
| 4741 | 4741 | public function getSelfLink() |
| 4742 | 4742 | { |
| 4743 | - return $this->selfLink; |
|
| 4743 | + return $this->selfLink; |
|
| 4744 | 4744 | } |
| 4745 | 4745 | public function setUpdated($updated) |
| 4746 | 4746 | { |
| 4747 | - $this->updated = $updated; |
|
| 4747 | + $this->updated = $updated; |
|
| 4748 | 4748 | } |
| 4749 | 4749 | public function getUpdated() |
| 4750 | 4750 | { |
| 4751 | - return $this->updated; |
|
| 4751 | + return $this->updated; |
|
| 4752 | 4752 | } |
| 4753 | 4753 | public function setWebPropertyId($webPropertyId) |
| 4754 | 4754 | { |
| 4755 | - $this->webPropertyId = $webPropertyId; |
|
| 4755 | + $this->webPropertyId = $webPropertyId; |
|
| 4756 | 4756 | } |
| 4757 | 4757 | public function getWebPropertyId() |
| 4758 | 4758 | { |
| 4759 | - return $this->webPropertyId; |
|
| 4759 | + return $this->webPropertyId; |
|
| 4760 | 4760 | } |
| 4761 | 4761 | } |
| 4762 | 4762 | |
@@ -4770,19 +4770,19 @@ discard block |
||
| 4770 | 4770 | |
| 4771 | 4771 | public function setHref($href) |
| 4772 | 4772 | { |
| 4773 | - $this->href = $href; |
|
| 4773 | + $this->href = $href; |
|
| 4774 | 4774 | } |
| 4775 | 4775 | public function getHref() |
| 4776 | 4776 | { |
| 4777 | - return $this->href; |
|
| 4777 | + return $this->href; |
|
| 4778 | 4778 | } |
| 4779 | 4779 | public function setType($type) |
| 4780 | 4780 | { |
| 4781 | - $this->type = $type; |
|
| 4781 | + $this->type = $type; |
|
| 4782 | 4782 | } |
| 4783 | 4783 | public function getType() |
| 4784 | 4784 | { |
| 4785 | - return $this->type; |
|
| 4785 | + return $this->type; |
|
| 4786 | 4786 | } |
| 4787 | 4787 | } |
| 4788 | 4788 | |
@@ -4804,75 +4804,75 @@ discard block |
||
| 4804 | 4804 | |
| 4805 | 4805 | public function setItems($items) |
| 4806 | 4806 | { |
| 4807 | - $this->items = $items; |
|
| 4807 | + $this->items = $items; |
|
| 4808 | 4808 | } |
| 4809 | 4809 | public function getItems() |
| 4810 | 4810 | { |
| 4811 | - return $this->items; |
|
| 4811 | + return $this->items; |
|
| 4812 | 4812 | } |
| 4813 | 4813 | public function setItemsPerPage($itemsPerPage) |
| 4814 | 4814 | { |
| 4815 | - $this->itemsPerPage = $itemsPerPage; |
|
| 4815 | + $this->itemsPerPage = $itemsPerPage; |
|
| 4816 | 4816 | } |
| 4817 | 4817 | public function getItemsPerPage() |
| 4818 | 4818 | { |
| 4819 | - return $this->itemsPerPage; |
|
| 4819 | + return $this->itemsPerPage; |
|
| 4820 | 4820 | } |
| 4821 | 4821 | public function setKind($kind) |
| 4822 | 4822 | { |
| 4823 | - $this->kind = $kind; |
|
| 4823 | + $this->kind = $kind; |
|
| 4824 | 4824 | } |
| 4825 | 4825 | public function getKind() |
| 4826 | 4826 | { |
| 4827 | - return $this->kind; |
|
| 4827 | + return $this->kind; |
|
| 4828 | 4828 | } |
| 4829 | 4829 | public function setNextLink($nextLink) |
| 4830 | 4830 | { |
| 4831 | - $this->nextLink = $nextLink; |
|
| 4831 | + $this->nextLink = $nextLink; |
|
| 4832 | 4832 | } |
| 4833 | 4833 | public function getNextLink() |
| 4834 | 4834 | { |
| 4835 | - return $this->nextLink; |
|
| 4835 | + return $this->nextLink; |
|
| 4836 | 4836 | } |
| 4837 | 4837 | public function setPreviousLink($previousLink) |
| 4838 | 4838 | { |
| 4839 | - $this->previousLink = $previousLink; |
|
| 4839 | + $this->previousLink = $previousLink; |
|
| 4840 | 4840 | } |
| 4841 | 4841 | public function getPreviousLink() |
| 4842 | 4842 | { |
| 4843 | - return $this->previousLink; |
|
| 4843 | + return $this->previousLink; |
|
| 4844 | 4844 | } |
| 4845 | 4845 | public function setStartIndex($startIndex) |
| 4846 | 4846 | { |
| 4847 | - $this->startIndex = $startIndex; |
|
| 4847 | + $this->startIndex = $startIndex; |
|
| 4848 | 4848 | } |
| 4849 | 4849 | public function getStartIndex() |
| 4850 | 4850 | { |
| 4851 | - return $this->startIndex; |
|
| 4851 | + return $this->startIndex; |
|
| 4852 | 4852 | } |
| 4853 | 4853 | public function setTotalResults($totalResults) |
| 4854 | 4854 | { |
| 4855 | - $this->totalResults = $totalResults; |
|
| 4855 | + $this->totalResults = $totalResults; |
|
| 4856 | 4856 | } |
| 4857 | 4857 | public function getTotalResults() |
| 4858 | 4858 | { |
| 4859 | - return $this->totalResults; |
|
| 4859 | + return $this->totalResults; |
|
| 4860 | 4860 | } |
| 4861 | 4861 | public function setUsername($username) |
| 4862 | 4862 | { |
| 4863 | - $this->username = $username; |
|
| 4863 | + $this->username = $username; |
|
| 4864 | 4864 | } |
| 4865 | 4865 | public function getUsername() |
| 4866 | 4866 | { |
| 4867 | - return $this->username; |
|
| 4867 | + return $this->username; |
|
| 4868 | 4868 | } |
| 4869 | 4869 | } |
| 4870 | 4870 | |
| 4871 | 4871 | class Google_Service_Analytics_CustomMetric extends Google_Model |
| 4872 | 4872 | { |
| 4873 | 4873 | protected $internal_gapi_mappings = array( |
| 4874 | - "maxValue" => "max_value", |
|
| 4875 | - "minValue" => "min_value", |
|
| 4874 | + "maxValue" => "max_value", |
|
| 4875 | + "minValue" => "min_value", |
|
| 4876 | 4876 | ); |
| 4877 | 4877 | public $accountId; |
| 4878 | 4878 | public $active; |
@@ -4894,123 +4894,123 @@ discard block |
||
| 4894 | 4894 | |
| 4895 | 4895 | public function setAccountId($accountId) |
| 4896 | 4896 | { |
| 4897 | - $this->accountId = $accountId; |
|
| 4897 | + $this->accountId = $accountId; |
|
| 4898 | 4898 | } |
| 4899 | 4899 | public function getAccountId() |
| 4900 | 4900 | { |
| 4901 | - return $this->accountId; |
|
| 4901 | + return $this->accountId; |
|
| 4902 | 4902 | } |
| 4903 | 4903 | public function setActive($active) |
| 4904 | 4904 | { |
| 4905 | - $this->active = $active; |
|
| 4905 | + $this->active = $active; |
|
| 4906 | 4906 | } |
| 4907 | 4907 | public function getActive() |
| 4908 | 4908 | { |
| 4909 | - return $this->active; |
|
| 4909 | + return $this->active; |
|
| 4910 | 4910 | } |
| 4911 | 4911 | public function setCreated($created) |
| 4912 | 4912 | { |
| 4913 | - $this->created = $created; |
|
| 4913 | + $this->created = $created; |
|
| 4914 | 4914 | } |
| 4915 | 4915 | public function getCreated() |
| 4916 | 4916 | { |
| 4917 | - return $this->created; |
|
| 4917 | + return $this->created; |
|
| 4918 | 4918 | } |
| 4919 | 4919 | public function setId($id) |
| 4920 | 4920 | { |
| 4921 | - $this->id = $id; |
|
| 4921 | + $this->id = $id; |
|
| 4922 | 4922 | } |
| 4923 | 4923 | public function getId() |
| 4924 | 4924 | { |
| 4925 | - return $this->id; |
|
| 4925 | + return $this->id; |
|
| 4926 | 4926 | } |
| 4927 | 4927 | public function setIndex($index) |
| 4928 | 4928 | { |
| 4929 | - $this->index = $index; |
|
| 4929 | + $this->index = $index; |
|
| 4930 | 4930 | } |
| 4931 | 4931 | public function getIndex() |
| 4932 | 4932 | { |
| 4933 | - return $this->index; |
|
| 4933 | + return $this->index; |
|
| 4934 | 4934 | } |
| 4935 | 4935 | public function setKind($kind) |
| 4936 | 4936 | { |
| 4937 | - $this->kind = $kind; |
|
| 4937 | + $this->kind = $kind; |
|
| 4938 | 4938 | } |
| 4939 | 4939 | public function getKind() |
| 4940 | 4940 | { |
| 4941 | - return $this->kind; |
|
| 4941 | + return $this->kind; |
|
| 4942 | 4942 | } |
| 4943 | 4943 | public function setMaxValue($maxValue) |
| 4944 | 4944 | { |
| 4945 | - $this->maxValue = $maxValue; |
|
| 4945 | + $this->maxValue = $maxValue; |
|
| 4946 | 4946 | } |
| 4947 | 4947 | public function getMaxValue() |
| 4948 | 4948 | { |
| 4949 | - return $this->maxValue; |
|
| 4949 | + return $this->maxValue; |
|
| 4950 | 4950 | } |
| 4951 | 4951 | public function setMinValue($minValue) |
| 4952 | 4952 | { |
| 4953 | - $this->minValue = $minValue; |
|
| 4953 | + $this->minValue = $minValue; |
|
| 4954 | 4954 | } |
| 4955 | 4955 | public function getMinValue() |
| 4956 | 4956 | { |
| 4957 | - return $this->minValue; |
|
| 4957 | + return $this->minValue; |
|
| 4958 | 4958 | } |
| 4959 | 4959 | public function setName($name) |
| 4960 | 4960 | { |
| 4961 | - $this->name = $name; |
|
| 4961 | + $this->name = $name; |
|
| 4962 | 4962 | } |
| 4963 | 4963 | public function getName() |
| 4964 | 4964 | { |
| 4965 | - return $this->name; |
|
| 4965 | + return $this->name; |
|
| 4966 | 4966 | } |
| 4967 | 4967 | public function setParentLink(Google_Service_Analytics_CustomMetricParentLink $parentLink) |
| 4968 | 4968 | { |
| 4969 | - $this->parentLink = $parentLink; |
|
| 4969 | + $this->parentLink = $parentLink; |
|
| 4970 | 4970 | } |
| 4971 | 4971 | public function getParentLink() |
| 4972 | 4972 | { |
| 4973 | - return $this->parentLink; |
|
| 4973 | + return $this->parentLink; |
|
| 4974 | 4974 | } |
| 4975 | 4975 | public function setScope($scope) |
| 4976 | 4976 | { |
| 4977 | - $this->scope = $scope; |
|
| 4977 | + $this->scope = $scope; |
|
| 4978 | 4978 | } |
| 4979 | 4979 | public function getScope() |
| 4980 | 4980 | { |
| 4981 | - return $this->scope; |
|
| 4981 | + return $this->scope; |
|
| 4982 | 4982 | } |
| 4983 | 4983 | public function setSelfLink($selfLink) |
| 4984 | 4984 | { |
| 4985 | - $this->selfLink = $selfLink; |
|
| 4985 | + $this->selfLink = $selfLink; |
|
| 4986 | 4986 | } |
| 4987 | 4987 | public function getSelfLink() |
| 4988 | 4988 | { |
| 4989 | - return $this->selfLink; |
|
| 4989 | + return $this->selfLink; |
|
| 4990 | 4990 | } |
| 4991 | 4991 | public function setType($type) |
| 4992 | 4992 | { |
| 4993 | - $this->type = $type; |
|
| 4993 | + $this->type = $type; |
|
| 4994 | 4994 | } |
| 4995 | 4995 | public function getType() |
| 4996 | 4996 | { |
| 4997 | - return $this->type; |
|
| 4997 | + return $this->type; |
|
| 4998 | 4998 | } |
| 4999 | 4999 | public function setUpdated($updated) |
| 5000 | 5000 | { |
| 5001 | - $this->updated = $updated; |
|
| 5001 | + $this->updated = $updated; |
|
| 5002 | 5002 | } |
| 5003 | 5003 | public function getUpdated() |
| 5004 | 5004 | { |
| 5005 | - return $this->updated; |
|
| 5005 | + return $this->updated; |
|
| 5006 | 5006 | } |
| 5007 | 5007 | public function setWebPropertyId($webPropertyId) |
| 5008 | 5008 | { |
| 5009 | - $this->webPropertyId = $webPropertyId; |
|
| 5009 | + $this->webPropertyId = $webPropertyId; |
|
| 5010 | 5010 | } |
| 5011 | 5011 | public function getWebPropertyId() |
| 5012 | 5012 | { |
| 5013 | - return $this->webPropertyId; |
|
| 5013 | + return $this->webPropertyId; |
|
| 5014 | 5014 | } |
| 5015 | 5015 | } |
| 5016 | 5016 | |
@@ -5024,19 +5024,19 @@ discard block |
||
| 5024 | 5024 | |
| 5025 | 5025 | public function setHref($href) |
| 5026 | 5026 | { |
| 5027 | - $this->href = $href; |
|
| 5027 | + $this->href = $href; |
|
| 5028 | 5028 | } |
| 5029 | 5029 | public function getHref() |
| 5030 | 5030 | { |
| 5031 | - return $this->href; |
|
| 5031 | + return $this->href; |
|
| 5032 | 5032 | } |
| 5033 | 5033 | public function setType($type) |
| 5034 | 5034 | { |
| 5035 | - $this->type = $type; |
|
| 5035 | + $this->type = $type; |
|
| 5036 | 5036 | } |
| 5037 | 5037 | public function getType() |
| 5038 | 5038 | { |
| 5039 | - return $this->type; |
|
| 5039 | + return $this->type; |
|
| 5040 | 5040 | } |
| 5041 | 5041 | } |
| 5042 | 5042 | |
@@ -5058,67 +5058,67 @@ discard block |
||
| 5058 | 5058 | |
| 5059 | 5059 | public function setItems($items) |
| 5060 | 5060 | { |
| 5061 | - $this->items = $items; |
|
| 5061 | + $this->items = $items; |
|
| 5062 | 5062 | } |
| 5063 | 5063 | public function getItems() |
| 5064 | 5064 | { |
| 5065 | - return $this->items; |
|
| 5065 | + return $this->items; |
|
| 5066 | 5066 | } |
| 5067 | 5067 | public function setItemsPerPage($itemsPerPage) |
| 5068 | 5068 | { |
| 5069 | - $this->itemsPerPage = $itemsPerPage; |
|
| 5069 | + $this->itemsPerPage = $itemsPerPage; |
|
| 5070 | 5070 | } |
| 5071 | 5071 | public function getItemsPerPage() |
| 5072 | 5072 | { |
| 5073 | - return $this->itemsPerPage; |
|
| 5073 | + return $this->itemsPerPage; |
|
| 5074 | 5074 | } |
| 5075 | 5075 | public function setKind($kind) |
| 5076 | 5076 | { |
| 5077 | - $this->kind = $kind; |
|
| 5077 | + $this->kind = $kind; |
|
| 5078 | 5078 | } |
| 5079 | 5079 | public function getKind() |
| 5080 | 5080 | { |
| 5081 | - return $this->kind; |
|
| 5081 | + return $this->kind; |
|
| 5082 | 5082 | } |
| 5083 | 5083 | public function setNextLink($nextLink) |
| 5084 | 5084 | { |
| 5085 | - $this->nextLink = $nextLink; |
|
| 5085 | + $this->nextLink = $nextLink; |
|
| 5086 | 5086 | } |
| 5087 | 5087 | public function getNextLink() |
| 5088 | 5088 | { |
| 5089 | - return $this->nextLink; |
|
| 5089 | + return $this->nextLink; |
|
| 5090 | 5090 | } |
| 5091 | 5091 | public function setPreviousLink($previousLink) |
| 5092 | 5092 | { |
| 5093 | - $this->previousLink = $previousLink; |
|
| 5093 | + $this->previousLink = $previousLink; |
|
| 5094 | 5094 | } |
| 5095 | 5095 | public function getPreviousLink() |
| 5096 | 5096 | { |
| 5097 | - return $this->previousLink; |
|
| 5097 | + return $this->previousLink; |
|
| 5098 | 5098 | } |
| 5099 | 5099 | public function setStartIndex($startIndex) |
| 5100 | 5100 | { |
| 5101 | - $this->startIndex = $startIndex; |
|
| 5101 | + $this->startIndex = $startIndex; |
|
| 5102 | 5102 | } |
| 5103 | 5103 | public function getStartIndex() |
| 5104 | 5104 | { |
| 5105 | - return $this->startIndex; |
|
| 5105 | + return $this->startIndex; |
|
| 5106 | 5106 | } |
| 5107 | 5107 | public function setTotalResults($totalResults) |
| 5108 | 5108 | { |
| 5109 | - $this->totalResults = $totalResults; |
|
| 5109 | + $this->totalResults = $totalResults; |
|
| 5110 | 5110 | } |
| 5111 | 5111 | public function getTotalResults() |
| 5112 | 5112 | { |
| 5113 | - return $this->totalResults; |
|
| 5113 | + return $this->totalResults; |
|
| 5114 | 5114 | } |
| 5115 | 5115 | public function setUsername($username) |
| 5116 | 5116 | { |
| 5117 | - $this->username = $username; |
|
| 5117 | + $this->username = $username; |
|
| 5118 | 5118 | } |
| 5119 | 5119 | public function getUsername() |
| 5120 | 5120 | { |
| 5121 | - return $this->username; |
|
| 5121 | + return $this->username; |
|
| 5122 | 5122 | } |
| 5123 | 5123 | } |
| 5124 | 5124 | |
@@ -5140,59 +5140,59 @@ discard block |
||
| 5140 | 5140 | |
| 5141 | 5141 | public function setAdWordsAccounts($adWordsAccounts) |
| 5142 | 5142 | { |
| 5143 | - $this->adWordsAccounts = $adWordsAccounts; |
|
| 5143 | + $this->adWordsAccounts = $adWordsAccounts; |
|
| 5144 | 5144 | } |
| 5145 | 5145 | public function getAdWordsAccounts() |
| 5146 | 5146 | { |
| 5147 | - return $this->adWordsAccounts; |
|
| 5147 | + return $this->adWordsAccounts; |
|
| 5148 | 5148 | } |
| 5149 | 5149 | public function setEntity(Google_Service_Analytics_EntityAdWordsLinkEntity $entity) |
| 5150 | 5150 | { |
| 5151 | - $this->entity = $entity; |
|
| 5151 | + $this->entity = $entity; |
|
| 5152 | 5152 | } |
| 5153 | 5153 | public function getEntity() |
| 5154 | 5154 | { |
| 5155 | - return $this->entity; |
|
| 5155 | + return $this->entity; |
|
| 5156 | 5156 | } |
| 5157 | 5157 | public function setId($id) |
| 5158 | 5158 | { |
| 5159 | - $this->id = $id; |
|
| 5159 | + $this->id = $id; |
|
| 5160 | 5160 | } |
| 5161 | 5161 | public function getId() |
| 5162 | 5162 | { |
| 5163 | - return $this->id; |
|
| 5163 | + return $this->id; |
|
| 5164 | 5164 | } |
| 5165 | 5165 | public function setKind($kind) |
| 5166 | 5166 | { |
| 5167 | - $this->kind = $kind; |
|
| 5167 | + $this->kind = $kind; |
|
| 5168 | 5168 | } |
| 5169 | 5169 | public function getKind() |
| 5170 | 5170 | { |
| 5171 | - return $this->kind; |
|
| 5171 | + return $this->kind; |
|
| 5172 | 5172 | } |
| 5173 | 5173 | public function setName($name) |
| 5174 | 5174 | { |
| 5175 | - $this->name = $name; |
|
| 5175 | + $this->name = $name; |
|
| 5176 | 5176 | } |
| 5177 | 5177 | public function getName() |
| 5178 | 5178 | { |
| 5179 | - return $this->name; |
|
| 5179 | + return $this->name; |
|
| 5180 | 5180 | } |
| 5181 | 5181 | public function setProfileIds($profileIds) |
| 5182 | 5182 | { |
| 5183 | - $this->profileIds = $profileIds; |
|
| 5183 | + $this->profileIds = $profileIds; |
|
| 5184 | 5184 | } |
| 5185 | 5185 | public function getProfileIds() |
| 5186 | 5186 | { |
| 5187 | - return $this->profileIds; |
|
| 5187 | + return $this->profileIds; |
|
| 5188 | 5188 | } |
| 5189 | 5189 | public function setSelfLink($selfLink) |
| 5190 | 5190 | { |
| 5191 | - $this->selfLink = $selfLink; |
|
| 5191 | + $this->selfLink = $selfLink; |
|
| 5192 | 5192 | } |
| 5193 | 5193 | public function getSelfLink() |
| 5194 | 5194 | { |
| 5195 | - return $this->selfLink; |
|
| 5195 | + return $this->selfLink; |
|
| 5196 | 5196 | } |
| 5197 | 5197 | } |
| 5198 | 5198 | |
@@ -5206,11 +5206,11 @@ discard block |
||
| 5206 | 5206 | |
| 5207 | 5207 | public function setWebPropertyRef(Google_Service_Analytics_WebPropertyRef $webPropertyRef) |
| 5208 | 5208 | { |
| 5209 | - $this->webPropertyRef = $webPropertyRef; |
|
| 5209 | + $this->webPropertyRef = $webPropertyRef; |
|
| 5210 | 5210 | } |
| 5211 | 5211 | public function getWebPropertyRef() |
| 5212 | 5212 | { |
| 5213 | - return $this->webPropertyRef; |
|
| 5213 | + return $this->webPropertyRef; |
|
| 5214 | 5214 | } |
| 5215 | 5215 | } |
| 5216 | 5216 | |
@@ -5231,59 +5231,59 @@ discard block |
||
| 5231 | 5231 | |
| 5232 | 5232 | public function setItems($items) |
| 5233 | 5233 | { |
| 5234 | - $this->items = $items; |
|
| 5234 | + $this->items = $items; |
|
| 5235 | 5235 | } |
| 5236 | 5236 | public function getItems() |
| 5237 | 5237 | { |
| 5238 | - return $this->items; |
|
| 5238 | + return $this->items; |
|
| 5239 | 5239 | } |
| 5240 | 5240 | public function setItemsPerPage($itemsPerPage) |
| 5241 | 5241 | { |
| 5242 | - $this->itemsPerPage = $itemsPerPage; |
|
| 5242 | + $this->itemsPerPage = $itemsPerPage; |
|
| 5243 | 5243 | } |
| 5244 | 5244 | public function getItemsPerPage() |
| 5245 | 5245 | { |
| 5246 | - return $this->itemsPerPage; |
|
| 5246 | + return $this->itemsPerPage; |
|
| 5247 | 5247 | } |
| 5248 | 5248 | public function setKind($kind) |
| 5249 | 5249 | { |
| 5250 | - $this->kind = $kind; |
|
| 5250 | + $this->kind = $kind; |
|
| 5251 | 5251 | } |
| 5252 | 5252 | public function getKind() |
| 5253 | 5253 | { |
| 5254 | - return $this->kind; |
|
| 5254 | + return $this->kind; |
|
| 5255 | 5255 | } |
| 5256 | 5256 | public function setNextLink($nextLink) |
| 5257 | 5257 | { |
| 5258 | - $this->nextLink = $nextLink; |
|
| 5258 | + $this->nextLink = $nextLink; |
|
| 5259 | 5259 | } |
| 5260 | 5260 | public function getNextLink() |
| 5261 | 5261 | { |
| 5262 | - return $this->nextLink; |
|
| 5262 | + return $this->nextLink; |
|
| 5263 | 5263 | } |
| 5264 | 5264 | public function setPreviousLink($previousLink) |
| 5265 | 5265 | { |
| 5266 | - $this->previousLink = $previousLink; |
|
| 5266 | + $this->previousLink = $previousLink; |
|
| 5267 | 5267 | } |
| 5268 | 5268 | public function getPreviousLink() |
| 5269 | 5269 | { |
| 5270 | - return $this->previousLink; |
|
| 5270 | + return $this->previousLink; |
|
| 5271 | 5271 | } |
| 5272 | 5272 | public function setStartIndex($startIndex) |
| 5273 | 5273 | { |
| 5274 | - $this->startIndex = $startIndex; |
|
| 5274 | + $this->startIndex = $startIndex; |
|
| 5275 | 5275 | } |
| 5276 | 5276 | public function getStartIndex() |
| 5277 | 5277 | { |
| 5278 | - return $this->startIndex; |
|
| 5278 | + return $this->startIndex; |
|
| 5279 | 5279 | } |
| 5280 | 5280 | public function setTotalResults($totalResults) |
| 5281 | 5281 | { |
| 5282 | - $this->totalResults = $totalResults; |
|
| 5282 | + $this->totalResults = $totalResults; |
|
| 5283 | 5283 | } |
| 5284 | 5284 | public function getTotalResults() |
| 5285 | 5285 | { |
| 5286 | - return $this->totalResults; |
|
| 5286 | + return $this->totalResults; |
|
| 5287 | 5287 | } |
| 5288 | 5288 | } |
| 5289 | 5289 | |
@@ -5304,51 +5304,51 @@ discard block |
||
| 5304 | 5304 | |
| 5305 | 5305 | public function setEntity(Google_Service_Analytics_EntityUserLinkEntity $entity) |
| 5306 | 5306 | { |
| 5307 | - $this->entity = $entity; |
|
| 5307 | + $this->entity = $entity; |
|
| 5308 | 5308 | } |
| 5309 | 5309 | public function getEntity() |
| 5310 | 5310 | { |
| 5311 | - return $this->entity; |
|
| 5311 | + return $this->entity; |
|
| 5312 | 5312 | } |
| 5313 | 5313 | public function setId($id) |
| 5314 | 5314 | { |
| 5315 | - $this->id = $id; |
|
| 5315 | + $this->id = $id; |
|
| 5316 | 5316 | } |
| 5317 | 5317 | public function getId() |
| 5318 | 5318 | { |
| 5319 | - return $this->id; |
|
| 5319 | + return $this->id; |
|
| 5320 | 5320 | } |
| 5321 | 5321 | public function setKind($kind) |
| 5322 | 5322 | { |
| 5323 | - $this->kind = $kind; |
|
| 5323 | + $this->kind = $kind; |
|
| 5324 | 5324 | } |
| 5325 | 5325 | public function getKind() |
| 5326 | 5326 | { |
| 5327 | - return $this->kind; |
|
| 5327 | + return $this->kind; |
|
| 5328 | 5328 | } |
| 5329 | 5329 | public function setPermissions(Google_Service_Analytics_EntityUserLinkPermissions $permissions) |
| 5330 | 5330 | { |
| 5331 | - $this->permissions = $permissions; |
|
| 5331 | + $this->permissions = $permissions; |
|
| 5332 | 5332 | } |
| 5333 | 5333 | public function getPermissions() |
| 5334 | 5334 | { |
| 5335 | - return $this->permissions; |
|
| 5335 | + return $this->permissions; |
|
| 5336 | 5336 | } |
| 5337 | 5337 | public function setSelfLink($selfLink) |
| 5338 | 5338 | { |
| 5339 | - $this->selfLink = $selfLink; |
|
| 5339 | + $this->selfLink = $selfLink; |
|
| 5340 | 5340 | } |
| 5341 | 5341 | public function getSelfLink() |
| 5342 | 5342 | { |
| 5343 | - return $this->selfLink; |
|
| 5343 | + return $this->selfLink; |
|
| 5344 | 5344 | } |
| 5345 | 5345 | public function setUserRef(Google_Service_Analytics_UserRef $userRef) |
| 5346 | 5346 | { |
| 5347 | - $this->userRef = $userRef; |
|
| 5347 | + $this->userRef = $userRef; |
|
| 5348 | 5348 | } |
| 5349 | 5349 | public function getUserRef() |
| 5350 | 5350 | { |
| 5351 | - return $this->userRef; |
|
| 5351 | + return $this->userRef; |
|
| 5352 | 5352 | } |
| 5353 | 5353 | } |
| 5354 | 5354 | |
@@ -5366,27 +5366,27 @@ discard block |
||
| 5366 | 5366 | |
| 5367 | 5367 | public function setAccountRef(Google_Service_Analytics_AccountRef $accountRef) |
| 5368 | 5368 | { |
| 5369 | - $this->accountRef = $accountRef; |
|
| 5369 | + $this->accountRef = $accountRef; |
|
| 5370 | 5370 | } |
| 5371 | 5371 | public function getAccountRef() |
| 5372 | 5372 | { |
| 5373 | - return $this->accountRef; |
|
| 5373 | + return $this->accountRef; |
|
| 5374 | 5374 | } |
| 5375 | 5375 | public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef) |
| 5376 | 5376 | { |
| 5377 | - $this->profileRef = $profileRef; |
|
| 5377 | + $this->profileRef = $profileRef; |
|
| 5378 | 5378 | } |
| 5379 | 5379 | public function getProfileRef() |
| 5380 | 5380 | { |
| 5381 | - return $this->profileRef; |
|
| 5381 | + return $this->profileRef; |
|
| 5382 | 5382 | } |
| 5383 | 5383 | public function setWebPropertyRef(Google_Service_Analytics_WebPropertyRef $webPropertyRef) |
| 5384 | 5384 | { |
| 5385 | - $this->webPropertyRef = $webPropertyRef; |
|
| 5385 | + $this->webPropertyRef = $webPropertyRef; |
|
| 5386 | 5386 | } |
| 5387 | 5387 | public function getWebPropertyRef() |
| 5388 | 5388 | { |
| 5389 | - return $this->webPropertyRef; |
|
| 5389 | + return $this->webPropertyRef; |
|
| 5390 | 5390 | } |
| 5391 | 5391 | } |
| 5392 | 5392 | |
@@ -5401,19 +5401,19 @@ discard block |
||
| 5401 | 5401 | |
| 5402 | 5402 | public function setEffective($effective) |
| 5403 | 5403 | { |
| 5404 | - $this->effective = $effective; |
|
| 5404 | + $this->effective = $effective; |
|
| 5405 | 5405 | } |
| 5406 | 5406 | public function getEffective() |
| 5407 | 5407 | { |
| 5408 | - return $this->effective; |
|
| 5408 | + return $this->effective; |
|
| 5409 | 5409 | } |
| 5410 | 5410 | public function setLocal($local) |
| 5411 | 5411 | { |
| 5412 | - $this->local = $local; |
|
| 5412 | + $this->local = $local; |
|
| 5413 | 5413 | } |
| 5414 | 5414 | public function getLocal() |
| 5415 | 5415 | { |
| 5416 | - return $this->local; |
|
| 5416 | + return $this->local; |
|
| 5417 | 5417 | } |
| 5418 | 5418 | } |
| 5419 | 5419 | |
@@ -5434,59 +5434,59 @@ discard block |
||
| 5434 | 5434 | |
| 5435 | 5435 | public function setItems($items) |
| 5436 | 5436 | { |
| 5437 | - $this->items = $items; |
|
| 5437 | + $this->items = $items; |
|
| 5438 | 5438 | } |
| 5439 | 5439 | public function getItems() |
| 5440 | 5440 | { |
| 5441 | - return $this->items; |
|
| 5441 | + return $this->items; |
|
| 5442 | 5442 | } |
| 5443 | 5443 | public function setItemsPerPage($itemsPerPage) |
| 5444 | 5444 | { |
| 5445 | - $this->itemsPerPage = $itemsPerPage; |
|
| 5445 | + $this->itemsPerPage = $itemsPerPage; |
|
| 5446 | 5446 | } |
| 5447 | 5447 | public function getItemsPerPage() |
| 5448 | 5448 | { |
| 5449 | - return $this->itemsPerPage; |
|
| 5449 | + return $this->itemsPerPage; |
|
| 5450 | 5450 | } |
| 5451 | 5451 | public function setKind($kind) |
| 5452 | 5452 | { |
| 5453 | - $this->kind = $kind; |
|
| 5453 | + $this->kind = $kind; |
|
| 5454 | 5454 | } |
| 5455 | 5455 | public function getKind() |
| 5456 | 5456 | { |
| 5457 | - return $this->kind; |
|
| 5457 | + return $this->kind; |
|
| 5458 | 5458 | } |
| 5459 | 5459 | public function setNextLink($nextLink) |
| 5460 | 5460 | { |
| 5461 | - $this->nextLink = $nextLink; |
|
| 5461 | + $this->nextLink = $nextLink; |
|
| 5462 | 5462 | } |
| 5463 | 5463 | public function getNextLink() |
| 5464 | 5464 | { |
| 5465 | - return $this->nextLink; |
|
| 5465 | + return $this->nextLink; |
|
| 5466 | 5466 | } |
| 5467 | 5467 | public function setPreviousLink($previousLink) |
| 5468 | 5468 | { |
| 5469 | - $this->previousLink = $previousLink; |
|
| 5469 | + $this->previousLink = $previousLink; |
|
| 5470 | 5470 | } |
| 5471 | 5471 | public function getPreviousLink() |
| 5472 | 5472 | { |
| 5473 | - return $this->previousLink; |
|
| 5473 | + return $this->previousLink; |
|
| 5474 | 5474 | } |
| 5475 | 5475 | public function setStartIndex($startIndex) |
| 5476 | 5476 | { |
| 5477 | - $this->startIndex = $startIndex; |
|
| 5477 | + $this->startIndex = $startIndex; |
|
| 5478 | 5478 | } |
| 5479 | 5479 | public function getStartIndex() |
| 5480 | 5480 | { |
| 5481 | - return $this->startIndex; |
|
| 5481 | + return $this->startIndex; |
|
| 5482 | 5482 | } |
| 5483 | 5483 | public function setTotalResults($totalResults) |
| 5484 | 5484 | { |
| 5485 | - $this->totalResults = $totalResults; |
|
| 5485 | + $this->totalResults = $totalResults; |
|
| 5486 | 5486 | } |
| 5487 | 5487 | public function getTotalResults() |
| 5488 | 5488 | { |
| 5489 | - return $this->totalResults; |
|
| 5489 | + return $this->totalResults; |
|
| 5490 | 5490 | } |
| 5491 | 5491 | } |
| 5492 | 5492 | |
@@ -5529,227 +5529,227 @@ discard block |
||
| 5529 | 5529 | |
| 5530 | 5530 | public function setAccountId($accountId) |
| 5531 | 5531 | { |
| 5532 | - $this->accountId = $accountId; |
|
| 5532 | + $this->accountId = $accountId; |
|
| 5533 | 5533 | } |
| 5534 | 5534 | public function getAccountId() |
| 5535 | 5535 | { |
| 5536 | - return $this->accountId; |
|
| 5536 | + return $this->accountId; |
|
| 5537 | 5537 | } |
| 5538 | 5538 | public function setCreated($created) |
| 5539 | 5539 | { |
| 5540 | - $this->created = $created; |
|
| 5540 | + $this->created = $created; |
|
| 5541 | 5541 | } |
| 5542 | 5542 | public function getCreated() |
| 5543 | 5543 | { |
| 5544 | - return $this->created; |
|
| 5544 | + return $this->created; |
|
| 5545 | 5545 | } |
| 5546 | 5546 | public function setDescription($description) |
| 5547 | 5547 | { |
| 5548 | - $this->description = $description; |
|
| 5548 | + $this->description = $description; |
|
| 5549 | 5549 | } |
| 5550 | 5550 | public function getDescription() |
| 5551 | 5551 | { |
| 5552 | - return $this->description; |
|
| 5552 | + return $this->description; |
|
| 5553 | 5553 | } |
| 5554 | 5554 | public function setEditableInGaUi($editableInGaUi) |
| 5555 | 5555 | { |
| 5556 | - $this->editableInGaUi = $editableInGaUi; |
|
| 5556 | + $this->editableInGaUi = $editableInGaUi; |
|
| 5557 | 5557 | } |
| 5558 | 5558 | public function getEditableInGaUi() |
| 5559 | 5559 | { |
| 5560 | - return $this->editableInGaUi; |
|
| 5560 | + return $this->editableInGaUi; |
|
| 5561 | 5561 | } |
| 5562 | 5562 | public function setEndTime($endTime) |
| 5563 | 5563 | { |
| 5564 | - $this->endTime = $endTime; |
|
| 5564 | + $this->endTime = $endTime; |
|
| 5565 | 5565 | } |
| 5566 | 5566 | public function getEndTime() |
| 5567 | 5567 | { |
| 5568 | - return $this->endTime; |
|
| 5568 | + return $this->endTime; |
|
| 5569 | 5569 | } |
| 5570 | 5570 | public function setEqualWeighting($equalWeighting) |
| 5571 | 5571 | { |
| 5572 | - $this->equalWeighting = $equalWeighting; |
|
| 5572 | + $this->equalWeighting = $equalWeighting; |
|
| 5573 | 5573 | } |
| 5574 | 5574 | public function getEqualWeighting() |
| 5575 | 5575 | { |
| 5576 | - return $this->equalWeighting; |
|
| 5576 | + return $this->equalWeighting; |
|
| 5577 | 5577 | } |
| 5578 | 5578 | public function setId($id) |
| 5579 | 5579 | { |
| 5580 | - $this->id = $id; |
|
| 5580 | + $this->id = $id; |
|
| 5581 | 5581 | } |
| 5582 | 5582 | public function getId() |
| 5583 | 5583 | { |
| 5584 | - return $this->id; |
|
| 5584 | + return $this->id; |
|
| 5585 | 5585 | } |
| 5586 | 5586 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 5587 | 5587 | { |
| 5588 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 5588 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 5589 | 5589 | } |
| 5590 | 5590 | public function getInternalWebPropertyId() |
| 5591 | 5591 | { |
| 5592 | - return $this->internalWebPropertyId; |
|
| 5592 | + return $this->internalWebPropertyId; |
|
| 5593 | 5593 | } |
| 5594 | 5594 | public function setKind($kind) |
| 5595 | 5595 | { |
| 5596 | - $this->kind = $kind; |
|
| 5596 | + $this->kind = $kind; |
|
| 5597 | 5597 | } |
| 5598 | 5598 | public function getKind() |
| 5599 | 5599 | { |
| 5600 | - return $this->kind; |
|
| 5600 | + return $this->kind; |
|
| 5601 | 5601 | } |
| 5602 | 5602 | public function setMinimumExperimentLengthInDays($minimumExperimentLengthInDays) |
| 5603 | 5603 | { |
| 5604 | - $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays; |
|
| 5604 | + $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays; |
|
| 5605 | 5605 | } |
| 5606 | 5606 | public function getMinimumExperimentLengthInDays() |
| 5607 | 5607 | { |
| 5608 | - return $this->minimumExperimentLengthInDays; |
|
| 5608 | + return $this->minimumExperimentLengthInDays; |
|
| 5609 | 5609 | } |
| 5610 | 5610 | public function setName($name) |
| 5611 | 5611 | { |
| 5612 | - $this->name = $name; |
|
| 5612 | + $this->name = $name; |
|
| 5613 | 5613 | } |
| 5614 | 5614 | public function getName() |
| 5615 | 5615 | { |
| 5616 | - return $this->name; |
|
| 5616 | + return $this->name; |
|
| 5617 | 5617 | } |
| 5618 | 5618 | public function setObjectiveMetric($objectiveMetric) |
| 5619 | 5619 | { |
| 5620 | - $this->objectiveMetric = $objectiveMetric; |
|
| 5620 | + $this->objectiveMetric = $objectiveMetric; |
|
| 5621 | 5621 | } |
| 5622 | 5622 | public function getObjectiveMetric() |
| 5623 | 5623 | { |
| 5624 | - return $this->objectiveMetric; |
|
| 5624 | + return $this->objectiveMetric; |
|
| 5625 | 5625 | } |
| 5626 | 5626 | public function setOptimizationType($optimizationType) |
| 5627 | 5627 | { |
| 5628 | - $this->optimizationType = $optimizationType; |
|
| 5628 | + $this->optimizationType = $optimizationType; |
|
| 5629 | 5629 | } |
| 5630 | 5630 | public function getOptimizationType() |
| 5631 | 5631 | { |
| 5632 | - return $this->optimizationType; |
|
| 5632 | + return $this->optimizationType; |
|
| 5633 | 5633 | } |
| 5634 | 5634 | public function setParentLink(Google_Service_Analytics_ExperimentParentLink $parentLink) |
| 5635 | 5635 | { |
| 5636 | - $this->parentLink = $parentLink; |
|
| 5636 | + $this->parentLink = $parentLink; |
|
| 5637 | 5637 | } |
| 5638 | 5638 | public function getParentLink() |
| 5639 | 5639 | { |
| 5640 | - return $this->parentLink; |
|
| 5640 | + return $this->parentLink; |
|
| 5641 | 5641 | } |
| 5642 | 5642 | public function setProfileId($profileId) |
| 5643 | 5643 | { |
| 5644 | - $this->profileId = $profileId; |
|
| 5644 | + $this->profileId = $profileId; |
|
| 5645 | 5645 | } |
| 5646 | 5646 | public function getProfileId() |
| 5647 | 5647 | { |
| 5648 | - return $this->profileId; |
|
| 5648 | + return $this->profileId; |
|
| 5649 | 5649 | } |
| 5650 | 5650 | public function setReasonExperimentEnded($reasonExperimentEnded) |
| 5651 | 5651 | { |
| 5652 | - $this->reasonExperimentEnded = $reasonExperimentEnded; |
|
| 5652 | + $this->reasonExperimentEnded = $reasonExperimentEnded; |
|
| 5653 | 5653 | } |
| 5654 | 5654 | public function getReasonExperimentEnded() |
| 5655 | 5655 | { |
| 5656 | - return $this->reasonExperimentEnded; |
|
| 5656 | + return $this->reasonExperimentEnded; |
|
| 5657 | 5657 | } |
| 5658 | 5658 | public function setRewriteVariationUrlsAsOriginal($rewriteVariationUrlsAsOriginal) |
| 5659 | 5659 | { |
| 5660 | - $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal; |
|
| 5660 | + $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal; |
|
| 5661 | 5661 | } |
| 5662 | 5662 | public function getRewriteVariationUrlsAsOriginal() |
| 5663 | 5663 | { |
| 5664 | - return $this->rewriteVariationUrlsAsOriginal; |
|
| 5664 | + return $this->rewriteVariationUrlsAsOriginal; |
|
| 5665 | 5665 | } |
| 5666 | 5666 | public function setSelfLink($selfLink) |
| 5667 | 5667 | { |
| 5668 | - $this->selfLink = $selfLink; |
|
| 5668 | + $this->selfLink = $selfLink; |
|
| 5669 | 5669 | } |
| 5670 | 5670 | public function getSelfLink() |
| 5671 | 5671 | { |
| 5672 | - return $this->selfLink; |
|
| 5672 | + return $this->selfLink; |
|
| 5673 | 5673 | } |
| 5674 | 5674 | public function setServingFramework($servingFramework) |
| 5675 | 5675 | { |
| 5676 | - $this->servingFramework = $servingFramework; |
|
| 5676 | + $this->servingFramework = $servingFramework; |
|
| 5677 | 5677 | } |
| 5678 | 5678 | public function getServingFramework() |
| 5679 | 5679 | { |
| 5680 | - return $this->servingFramework; |
|
| 5680 | + return $this->servingFramework; |
|
| 5681 | 5681 | } |
| 5682 | 5682 | public function setSnippet($snippet) |
| 5683 | 5683 | { |
| 5684 | - $this->snippet = $snippet; |
|
| 5684 | + $this->snippet = $snippet; |
|
| 5685 | 5685 | } |
| 5686 | 5686 | public function getSnippet() |
| 5687 | 5687 | { |
| 5688 | - return $this->snippet; |
|
| 5688 | + return $this->snippet; |
|
| 5689 | 5689 | } |
| 5690 | 5690 | public function setStartTime($startTime) |
| 5691 | 5691 | { |
| 5692 | - $this->startTime = $startTime; |
|
| 5692 | + $this->startTime = $startTime; |
|
| 5693 | 5693 | } |
| 5694 | 5694 | public function getStartTime() |
| 5695 | 5695 | { |
| 5696 | - return $this->startTime; |
|
| 5696 | + return $this->startTime; |
|
| 5697 | 5697 | } |
| 5698 | 5698 | public function setStatus($status) |
| 5699 | 5699 | { |
| 5700 | - $this->status = $status; |
|
| 5700 | + $this->status = $status; |
|
| 5701 | 5701 | } |
| 5702 | 5702 | public function getStatus() |
| 5703 | 5703 | { |
| 5704 | - return $this->status; |
|
| 5704 | + return $this->status; |
|
| 5705 | 5705 | } |
| 5706 | 5706 | public function setTrafficCoverage($trafficCoverage) |
| 5707 | 5707 | { |
| 5708 | - $this->trafficCoverage = $trafficCoverage; |
|
| 5708 | + $this->trafficCoverage = $trafficCoverage; |
|
| 5709 | 5709 | } |
| 5710 | 5710 | public function getTrafficCoverage() |
| 5711 | 5711 | { |
| 5712 | - return $this->trafficCoverage; |
|
| 5712 | + return $this->trafficCoverage; |
|
| 5713 | 5713 | } |
| 5714 | 5714 | public function setUpdated($updated) |
| 5715 | 5715 | { |
| 5716 | - $this->updated = $updated; |
|
| 5716 | + $this->updated = $updated; |
|
| 5717 | 5717 | } |
| 5718 | 5718 | public function getUpdated() |
| 5719 | 5719 | { |
| 5720 | - return $this->updated; |
|
| 5720 | + return $this->updated; |
|
| 5721 | 5721 | } |
| 5722 | 5722 | public function setVariations($variations) |
| 5723 | 5723 | { |
| 5724 | - $this->variations = $variations; |
|
| 5724 | + $this->variations = $variations; |
|
| 5725 | 5725 | } |
| 5726 | 5726 | public function getVariations() |
| 5727 | 5727 | { |
| 5728 | - return $this->variations; |
|
| 5728 | + return $this->variations; |
|
| 5729 | 5729 | } |
| 5730 | 5730 | public function setWebPropertyId($webPropertyId) |
| 5731 | 5731 | { |
| 5732 | - $this->webPropertyId = $webPropertyId; |
|
| 5732 | + $this->webPropertyId = $webPropertyId; |
|
| 5733 | 5733 | } |
| 5734 | 5734 | public function getWebPropertyId() |
| 5735 | 5735 | { |
| 5736 | - return $this->webPropertyId; |
|
| 5736 | + return $this->webPropertyId; |
|
| 5737 | 5737 | } |
| 5738 | 5738 | public function setWinnerConfidenceLevel($winnerConfidenceLevel) |
| 5739 | 5739 | { |
| 5740 | - $this->winnerConfidenceLevel = $winnerConfidenceLevel; |
|
| 5740 | + $this->winnerConfidenceLevel = $winnerConfidenceLevel; |
|
| 5741 | 5741 | } |
| 5742 | 5742 | public function getWinnerConfidenceLevel() |
| 5743 | 5743 | { |
| 5744 | - return $this->winnerConfidenceLevel; |
|
| 5744 | + return $this->winnerConfidenceLevel; |
|
| 5745 | 5745 | } |
| 5746 | 5746 | public function setWinnerFound($winnerFound) |
| 5747 | 5747 | { |
| 5748 | - $this->winnerFound = $winnerFound; |
|
| 5748 | + $this->winnerFound = $winnerFound; |
|
| 5749 | 5749 | } |
| 5750 | 5750 | public function getWinnerFound() |
| 5751 | 5751 | { |
| 5752 | - return $this->winnerFound; |
|
| 5752 | + return $this->winnerFound; |
|
| 5753 | 5753 | } |
| 5754 | 5754 | } |
| 5755 | 5755 | |
@@ -5763,19 +5763,19 @@ discard block |
||
| 5763 | 5763 | |
| 5764 | 5764 | public function setHref($href) |
| 5765 | 5765 | { |
| 5766 | - $this->href = $href; |
|
| 5766 | + $this->href = $href; |
|
| 5767 | 5767 | } |
| 5768 | 5768 | public function getHref() |
| 5769 | 5769 | { |
| 5770 | - return $this->href; |
|
| 5770 | + return $this->href; |
|
| 5771 | 5771 | } |
| 5772 | 5772 | public function setType($type) |
| 5773 | 5773 | { |
| 5774 | - $this->type = $type; |
|
| 5774 | + $this->type = $type; |
|
| 5775 | 5775 | } |
| 5776 | 5776 | public function getType() |
| 5777 | 5777 | { |
| 5778 | - return $this->type; |
|
| 5778 | + return $this->type; |
|
| 5779 | 5779 | } |
| 5780 | 5780 | } |
| 5781 | 5781 | |
@@ -5792,43 +5792,43 @@ discard block |
||
| 5792 | 5792 | |
| 5793 | 5793 | public function setName($name) |
| 5794 | 5794 | { |
| 5795 | - $this->name = $name; |
|
| 5795 | + $this->name = $name; |
|
| 5796 | 5796 | } |
| 5797 | 5797 | public function getName() |
| 5798 | 5798 | { |
| 5799 | - return $this->name; |
|
| 5799 | + return $this->name; |
|
| 5800 | 5800 | } |
| 5801 | 5801 | public function setStatus($status) |
| 5802 | 5802 | { |
| 5803 | - $this->status = $status; |
|
| 5803 | + $this->status = $status; |
|
| 5804 | 5804 | } |
| 5805 | 5805 | public function getStatus() |
| 5806 | 5806 | { |
| 5807 | - return $this->status; |
|
| 5807 | + return $this->status; |
|
| 5808 | 5808 | } |
| 5809 | 5809 | public function setUrl($url) |
| 5810 | 5810 | { |
| 5811 | - $this->url = $url; |
|
| 5811 | + $this->url = $url; |
|
| 5812 | 5812 | } |
| 5813 | 5813 | public function getUrl() |
| 5814 | 5814 | { |
| 5815 | - return $this->url; |
|
| 5815 | + return $this->url; |
|
| 5816 | 5816 | } |
| 5817 | 5817 | public function setWeight($weight) |
| 5818 | 5818 | { |
| 5819 | - $this->weight = $weight; |
|
| 5819 | + $this->weight = $weight; |
|
| 5820 | 5820 | } |
| 5821 | 5821 | public function getWeight() |
| 5822 | 5822 | { |
| 5823 | - return $this->weight; |
|
| 5823 | + return $this->weight; |
|
| 5824 | 5824 | } |
| 5825 | 5825 | public function setWon($won) |
| 5826 | 5826 | { |
| 5827 | - $this->won = $won; |
|
| 5827 | + $this->won = $won; |
|
| 5828 | 5828 | } |
| 5829 | 5829 | public function getWon() |
| 5830 | 5830 | { |
| 5831 | - return $this->won; |
|
| 5831 | + return $this->won; |
|
| 5832 | 5832 | } |
| 5833 | 5833 | } |
| 5834 | 5834 | |
@@ -5850,67 +5850,67 @@ discard block |
||
| 5850 | 5850 | |
| 5851 | 5851 | public function setItems($items) |
| 5852 | 5852 | { |
| 5853 | - $this->items = $items; |
|
| 5853 | + $this->items = $items; |
|
| 5854 | 5854 | } |
| 5855 | 5855 | public function getItems() |
| 5856 | 5856 | { |
| 5857 | - return $this->items; |
|
| 5857 | + return $this->items; |
|
| 5858 | 5858 | } |
| 5859 | 5859 | public function setItemsPerPage($itemsPerPage) |
| 5860 | 5860 | { |
| 5861 | - $this->itemsPerPage = $itemsPerPage; |
|
| 5861 | + $this->itemsPerPage = $itemsPerPage; |
|
| 5862 | 5862 | } |
| 5863 | 5863 | public function getItemsPerPage() |
| 5864 | 5864 | { |
| 5865 | - return $this->itemsPerPage; |
|
| 5865 | + return $this->itemsPerPage; |
|
| 5866 | 5866 | } |
| 5867 | 5867 | public function setKind($kind) |
| 5868 | 5868 | { |
| 5869 | - $this->kind = $kind; |
|
| 5869 | + $this->kind = $kind; |
|
| 5870 | 5870 | } |
| 5871 | 5871 | public function getKind() |
| 5872 | 5872 | { |
| 5873 | - return $this->kind; |
|
| 5873 | + return $this->kind; |
|
| 5874 | 5874 | } |
| 5875 | 5875 | public function setNextLink($nextLink) |
| 5876 | 5876 | { |
| 5877 | - $this->nextLink = $nextLink; |
|
| 5877 | + $this->nextLink = $nextLink; |
|
| 5878 | 5878 | } |
| 5879 | 5879 | public function getNextLink() |
| 5880 | 5880 | { |
| 5881 | - return $this->nextLink; |
|
| 5881 | + return $this->nextLink; |
|
| 5882 | 5882 | } |
| 5883 | 5883 | public function setPreviousLink($previousLink) |
| 5884 | 5884 | { |
| 5885 | - $this->previousLink = $previousLink; |
|
| 5885 | + $this->previousLink = $previousLink; |
|
| 5886 | 5886 | } |
| 5887 | 5887 | public function getPreviousLink() |
| 5888 | 5888 | { |
| 5889 | - return $this->previousLink; |
|
| 5889 | + return $this->previousLink; |
|
| 5890 | 5890 | } |
| 5891 | 5891 | public function setStartIndex($startIndex) |
| 5892 | 5892 | { |
| 5893 | - $this->startIndex = $startIndex; |
|
| 5893 | + $this->startIndex = $startIndex; |
|
| 5894 | 5894 | } |
| 5895 | 5895 | public function getStartIndex() |
| 5896 | 5896 | { |
| 5897 | - return $this->startIndex; |
|
| 5897 | + return $this->startIndex; |
|
| 5898 | 5898 | } |
| 5899 | 5899 | public function setTotalResults($totalResults) |
| 5900 | 5900 | { |
| 5901 | - $this->totalResults = $totalResults; |
|
| 5901 | + $this->totalResults = $totalResults; |
|
| 5902 | 5902 | } |
| 5903 | 5903 | public function getTotalResults() |
| 5904 | 5904 | { |
| 5905 | - return $this->totalResults; |
|
| 5905 | + return $this->totalResults; |
|
| 5906 | 5906 | } |
| 5907 | 5907 | public function setUsername($username) |
| 5908 | 5908 | { |
| 5909 | - $this->username = $username; |
|
| 5909 | + $this->username = $username; |
|
| 5910 | 5910 | } |
| 5911 | 5911 | public function getUsername() |
| 5912 | 5912 | { |
| 5913 | - return $this->username; |
|
| 5913 | + return $this->username; |
|
| 5914 | 5914 | } |
| 5915 | 5915 | } |
| 5916 | 5916 | |
@@ -5944,123 +5944,123 @@ discard block |
||
| 5944 | 5944 | |
| 5945 | 5945 | public function setAccountId($accountId) |
| 5946 | 5946 | { |
| 5947 | - $this->accountId = $accountId; |
|
| 5947 | + $this->accountId = $accountId; |
|
| 5948 | 5948 | } |
| 5949 | 5949 | public function getAccountId() |
| 5950 | 5950 | { |
| 5951 | - return $this->accountId; |
|
| 5951 | + return $this->accountId; |
|
| 5952 | 5952 | } |
| 5953 | 5953 | public function setAdvancedDetails(Google_Service_Analytics_FilterAdvancedDetails $advancedDetails) |
| 5954 | 5954 | { |
| 5955 | - $this->advancedDetails = $advancedDetails; |
|
| 5955 | + $this->advancedDetails = $advancedDetails; |
|
| 5956 | 5956 | } |
| 5957 | 5957 | public function getAdvancedDetails() |
| 5958 | 5958 | { |
| 5959 | - return $this->advancedDetails; |
|
| 5959 | + return $this->advancedDetails; |
|
| 5960 | 5960 | } |
| 5961 | 5961 | public function setCreated($created) |
| 5962 | 5962 | { |
| 5963 | - $this->created = $created; |
|
| 5963 | + $this->created = $created; |
|
| 5964 | 5964 | } |
| 5965 | 5965 | public function getCreated() |
| 5966 | 5966 | { |
| 5967 | - return $this->created; |
|
| 5967 | + return $this->created; |
|
| 5968 | 5968 | } |
| 5969 | 5969 | public function setExcludeDetails(Google_Service_Analytics_FilterExpression $excludeDetails) |
| 5970 | 5970 | { |
| 5971 | - $this->excludeDetails = $excludeDetails; |
|
| 5971 | + $this->excludeDetails = $excludeDetails; |
|
| 5972 | 5972 | } |
| 5973 | 5973 | public function getExcludeDetails() |
| 5974 | 5974 | { |
| 5975 | - return $this->excludeDetails; |
|
| 5975 | + return $this->excludeDetails; |
|
| 5976 | 5976 | } |
| 5977 | 5977 | public function setId($id) |
| 5978 | 5978 | { |
| 5979 | - $this->id = $id; |
|
| 5979 | + $this->id = $id; |
|
| 5980 | 5980 | } |
| 5981 | 5981 | public function getId() |
| 5982 | 5982 | { |
| 5983 | - return $this->id; |
|
| 5983 | + return $this->id; |
|
| 5984 | 5984 | } |
| 5985 | 5985 | public function setIncludeDetails(Google_Service_Analytics_FilterExpression $includeDetails) |
| 5986 | 5986 | { |
| 5987 | - $this->includeDetails = $includeDetails; |
|
| 5987 | + $this->includeDetails = $includeDetails; |
|
| 5988 | 5988 | } |
| 5989 | 5989 | public function getIncludeDetails() |
| 5990 | 5990 | { |
| 5991 | - return $this->includeDetails; |
|
| 5991 | + return $this->includeDetails; |
|
| 5992 | 5992 | } |
| 5993 | 5993 | public function setKind($kind) |
| 5994 | 5994 | { |
| 5995 | - $this->kind = $kind; |
|
| 5995 | + $this->kind = $kind; |
|
| 5996 | 5996 | } |
| 5997 | 5997 | public function getKind() |
| 5998 | 5998 | { |
| 5999 | - return $this->kind; |
|
| 5999 | + return $this->kind; |
|
| 6000 | 6000 | } |
| 6001 | 6001 | public function setLowercaseDetails(Google_Service_Analytics_FilterLowercaseDetails $lowercaseDetails) |
| 6002 | 6002 | { |
| 6003 | - $this->lowercaseDetails = $lowercaseDetails; |
|
| 6003 | + $this->lowercaseDetails = $lowercaseDetails; |
|
| 6004 | 6004 | } |
| 6005 | 6005 | public function getLowercaseDetails() |
| 6006 | 6006 | { |
| 6007 | - return $this->lowercaseDetails; |
|
| 6007 | + return $this->lowercaseDetails; |
|
| 6008 | 6008 | } |
| 6009 | 6009 | public function setName($name) |
| 6010 | 6010 | { |
| 6011 | - $this->name = $name; |
|
| 6011 | + $this->name = $name; |
|
| 6012 | 6012 | } |
| 6013 | 6013 | public function getName() |
| 6014 | 6014 | { |
| 6015 | - return $this->name; |
|
| 6015 | + return $this->name; |
|
| 6016 | 6016 | } |
| 6017 | 6017 | public function setParentLink(Google_Service_Analytics_FilterParentLink $parentLink) |
| 6018 | 6018 | { |
| 6019 | - $this->parentLink = $parentLink; |
|
| 6019 | + $this->parentLink = $parentLink; |
|
| 6020 | 6020 | } |
| 6021 | 6021 | public function getParentLink() |
| 6022 | 6022 | { |
| 6023 | - return $this->parentLink; |
|
| 6023 | + return $this->parentLink; |
|
| 6024 | 6024 | } |
| 6025 | 6025 | public function setSearchAndReplaceDetails(Google_Service_Analytics_FilterSearchAndReplaceDetails $searchAndReplaceDetails) |
| 6026 | 6026 | { |
| 6027 | - $this->searchAndReplaceDetails = $searchAndReplaceDetails; |
|
| 6027 | + $this->searchAndReplaceDetails = $searchAndReplaceDetails; |
|
| 6028 | 6028 | } |
| 6029 | 6029 | public function getSearchAndReplaceDetails() |
| 6030 | 6030 | { |
| 6031 | - return $this->searchAndReplaceDetails; |
|
| 6031 | + return $this->searchAndReplaceDetails; |
|
| 6032 | 6032 | } |
| 6033 | 6033 | public function setSelfLink($selfLink) |
| 6034 | 6034 | { |
| 6035 | - $this->selfLink = $selfLink; |
|
| 6035 | + $this->selfLink = $selfLink; |
|
| 6036 | 6036 | } |
| 6037 | 6037 | public function getSelfLink() |
| 6038 | 6038 | { |
| 6039 | - return $this->selfLink; |
|
| 6039 | + return $this->selfLink; |
|
| 6040 | 6040 | } |
| 6041 | 6041 | public function setType($type) |
| 6042 | 6042 | { |
| 6043 | - $this->type = $type; |
|
| 6043 | + $this->type = $type; |
|
| 6044 | 6044 | } |
| 6045 | 6045 | public function getType() |
| 6046 | 6046 | { |
| 6047 | - return $this->type; |
|
| 6047 | + return $this->type; |
|
| 6048 | 6048 | } |
| 6049 | 6049 | public function setUpdated($updated) |
| 6050 | 6050 | { |
| 6051 | - $this->updated = $updated; |
|
| 6051 | + $this->updated = $updated; |
|
| 6052 | 6052 | } |
| 6053 | 6053 | public function getUpdated() |
| 6054 | 6054 | { |
| 6055 | - return $this->updated; |
|
| 6055 | + return $this->updated; |
|
| 6056 | 6056 | } |
| 6057 | 6057 | public function setUppercaseDetails(Google_Service_Analytics_FilterUppercaseDetails $uppercaseDetails) |
| 6058 | 6058 | { |
| 6059 | - $this->uppercaseDetails = $uppercaseDetails; |
|
| 6059 | + $this->uppercaseDetails = $uppercaseDetails; |
|
| 6060 | 6060 | } |
| 6061 | 6061 | public function getUppercaseDetails() |
| 6062 | 6062 | { |
| 6063 | - return $this->uppercaseDetails; |
|
| 6063 | + return $this->uppercaseDetails; |
|
| 6064 | 6064 | } |
| 6065 | 6065 | } |
| 6066 | 6066 | |
@@ -6085,107 +6085,107 @@ discard block |
||
| 6085 | 6085 | |
| 6086 | 6086 | public function setCaseSensitive($caseSensitive) |
| 6087 | 6087 | { |
| 6088 | - $this->caseSensitive = $caseSensitive; |
|
| 6088 | + $this->caseSensitive = $caseSensitive; |
|
| 6089 | 6089 | } |
| 6090 | 6090 | public function getCaseSensitive() |
| 6091 | 6091 | { |
| 6092 | - return $this->caseSensitive; |
|
| 6092 | + return $this->caseSensitive; |
|
| 6093 | 6093 | } |
| 6094 | 6094 | public function setExtractA($extractA) |
| 6095 | 6095 | { |
| 6096 | - $this->extractA = $extractA; |
|
| 6096 | + $this->extractA = $extractA; |
|
| 6097 | 6097 | } |
| 6098 | 6098 | public function getExtractA() |
| 6099 | 6099 | { |
| 6100 | - return $this->extractA; |
|
| 6100 | + return $this->extractA; |
|
| 6101 | 6101 | } |
| 6102 | 6102 | public function setExtractB($extractB) |
| 6103 | 6103 | { |
| 6104 | - $this->extractB = $extractB; |
|
| 6104 | + $this->extractB = $extractB; |
|
| 6105 | 6105 | } |
| 6106 | 6106 | public function getExtractB() |
| 6107 | 6107 | { |
| 6108 | - return $this->extractB; |
|
| 6108 | + return $this->extractB; |
|
| 6109 | 6109 | } |
| 6110 | 6110 | public function setFieldA($fieldA) |
| 6111 | 6111 | { |
| 6112 | - $this->fieldA = $fieldA; |
|
| 6112 | + $this->fieldA = $fieldA; |
|
| 6113 | 6113 | } |
| 6114 | 6114 | public function getFieldA() |
| 6115 | 6115 | { |
| 6116 | - return $this->fieldA; |
|
| 6116 | + return $this->fieldA; |
|
| 6117 | 6117 | } |
| 6118 | 6118 | public function setFieldAIndex($fieldAIndex) |
| 6119 | 6119 | { |
| 6120 | - $this->fieldAIndex = $fieldAIndex; |
|
| 6120 | + $this->fieldAIndex = $fieldAIndex; |
|
| 6121 | 6121 | } |
| 6122 | 6122 | public function getFieldAIndex() |
| 6123 | 6123 | { |
| 6124 | - return $this->fieldAIndex; |
|
| 6124 | + return $this->fieldAIndex; |
|
| 6125 | 6125 | } |
| 6126 | 6126 | public function setFieldARequired($fieldARequired) |
| 6127 | 6127 | { |
| 6128 | - $this->fieldARequired = $fieldARequired; |
|
| 6128 | + $this->fieldARequired = $fieldARequired; |
|
| 6129 | 6129 | } |
| 6130 | 6130 | public function getFieldARequired() |
| 6131 | 6131 | { |
| 6132 | - return $this->fieldARequired; |
|
| 6132 | + return $this->fieldARequired; |
|
| 6133 | 6133 | } |
| 6134 | 6134 | public function setFieldB($fieldB) |
| 6135 | 6135 | { |
| 6136 | - $this->fieldB = $fieldB; |
|
| 6136 | + $this->fieldB = $fieldB; |
|
| 6137 | 6137 | } |
| 6138 | 6138 | public function getFieldB() |
| 6139 | 6139 | { |
| 6140 | - return $this->fieldB; |
|
| 6140 | + return $this->fieldB; |
|
| 6141 | 6141 | } |
| 6142 | 6142 | public function setFieldBIndex($fieldBIndex) |
| 6143 | 6143 | { |
| 6144 | - $this->fieldBIndex = $fieldBIndex; |
|
| 6144 | + $this->fieldBIndex = $fieldBIndex; |
|
| 6145 | 6145 | } |
| 6146 | 6146 | public function getFieldBIndex() |
| 6147 | 6147 | { |
| 6148 | - return $this->fieldBIndex; |
|
| 6148 | + return $this->fieldBIndex; |
|
| 6149 | 6149 | } |
| 6150 | 6150 | public function setFieldBRequired($fieldBRequired) |
| 6151 | 6151 | { |
| 6152 | - $this->fieldBRequired = $fieldBRequired; |
|
| 6152 | + $this->fieldBRequired = $fieldBRequired; |
|
| 6153 | 6153 | } |
| 6154 | 6154 | public function getFieldBRequired() |
| 6155 | 6155 | { |
| 6156 | - return $this->fieldBRequired; |
|
| 6156 | + return $this->fieldBRequired; |
|
| 6157 | 6157 | } |
| 6158 | 6158 | public function setOutputConstructor($outputConstructor) |
| 6159 | 6159 | { |
| 6160 | - $this->outputConstructor = $outputConstructor; |
|
| 6160 | + $this->outputConstructor = $outputConstructor; |
|
| 6161 | 6161 | } |
| 6162 | 6162 | public function getOutputConstructor() |
| 6163 | 6163 | { |
| 6164 | - return $this->outputConstructor; |
|
| 6164 | + return $this->outputConstructor; |
|
| 6165 | 6165 | } |
| 6166 | 6166 | public function setOutputToField($outputToField) |
| 6167 | 6167 | { |
| 6168 | - $this->outputToField = $outputToField; |
|
| 6168 | + $this->outputToField = $outputToField; |
|
| 6169 | 6169 | } |
| 6170 | 6170 | public function getOutputToField() |
| 6171 | 6171 | { |
| 6172 | - return $this->outputToField; |
|
| 6172 | + return $this->outputToField; |
|
| 6173 | 6173 | } |
| 6174 | 6174 | public function setOutputToFieldIndex($outputToFieldIndex) |
| 6175 | 6175 | { |
| 6176 | - $this->outputToFieldIndex = $outputToFieldIndex; |
|
| 6176 | + $this->outputToFieldIndex = $outputToFieldIndex; |
|
| 6177 | 6177 | } |
| 6178 | 6178 | public function getOutputToFieldIndex() |
| 6179 | 6179 | { |
| 6180 | - return $this->outputToFieldIndex; |
|
| 6180 | + return $this->outputToFieldIndex; |
|
| 6181 | 6181 | } |
| 6182 | 6182 | public function setOverrideOutputField($overrideOutputField) |
| 6183 | 6183 | { |
| 6184 | - $this->overrideOutputField = $overrideOutputField; |
|
| 6184 | + $this->overrideOutputField = $overrideOutputField; |
|
| 6185 | 6185 | } |
| 6186 | 6186 | public function getOverrideOutputField() |
| 6187 | 6187 | { |
| 6188 | - return $this->overrideOutputField; |
|
| 6188 | + return $this->overrideOutputField; |
|
| 6189 | 6189 | } |
| 6190 | 6190 | } |
| 6191 | 6191 | |
@@ -6203,51 +6203,51 @@ discard block |
||
| 6203 | 6203 | |
| 6204 | 6204 | public function setCaseSensitive($caseSensitive) |
| 6205 | 6205 | { |
| 6206 | - $this->caseSensitive = $caseSensitive; |
|
| 6206 | + $this->caseSensitive = $caseSensitive; |
|
| 6207 | 6207 | } |
| 6208 | 6208 | public function getCaseSensitive() |
| 6209 | 6209 | { |
| 6210 | - return $this->caseSensitive; |
|
| 6210 | + return $this->caseSensitive; |
|
| 6211 | 6211 | } |
| 6212 | 6212 | public function setExpressionValue($expressionValue) |
| 6213 | 6213 | { |
| 6214 | - $this->expressionValue = $expressionValue; |
|
| 6214 | + $this->expressionValue = $expressionValue; |
|
| 6215 | 6215 | } |
| 6216 | 6216 | public function getExpressionValue() |
| 6217 | 6217 | { |
| 6218 | - return $this->expressionValue; |
|
| 6218 | + return $this->expressionValue; |
|
| 6219 | 6219 | } |
| 6220 | 6220 | public function setField($field) |
| 6221 | 6221 | { |
| 6222 | - $this->field = $field; |
|
| 6222 | + $this->field = $field; |
|
| 6223 | 6223 | } |
| 6224 | 6224 | public function getField() |
| 6225 | 6225 | { |
| 6226 | - return $this->field; |
|
| 6226 | + return $this->field; |
|
| 6227 | 6227 | } |
| 6228 | 6228 | public function setFieldIndex($fieldIndex) |
| 6229 | 6229 | { |
| 6230 | - $this->fieldIndex = $fieldIndex; |
|
| 6230 | + $this->fieldIndex = $fieldIndex; |
|
| 6231 | 6231 | } |
| 6232 | 6232 | public function getFieldIndex() |
| 6233 | 6233 | { |
| 6234 | - return $this->fieldIndex; |
|
| 6234 | + return $this->fieldIndex; |
|
| 6235 | 6235 | } |
| 6236 | 6236 | public function setKind($kind) |
| 6237 | 6237 | { |
| 6238 | - $this->kind = $kind; |
|
| 6238 | + $this->kind = $kind; |
|
| 6239 | 6239 | } |
| 6240 | 6240 | public function getKind() |
| 6241 | 6241 | { |
| 6242 | - return $this->kind; |
|
| 6242 | + return $this->kind; |
|
| 6243 | 6243 | } |
| 6244 | 6244 | public function setMatchType($matchType) |
| 6245 | 6245 | { |
| 6246 | - $this->matchType = $matchType; |
|
| 6246 | + $this->matchType = $matchType; |
|
| 6247 | 6247 | } |
| 6248 | 6248 | public function getMatchType() |
| 6249 | 6249 | { |
| 6250 | - return $this->matchType; |
|
| 6250 | + return $this->matchType; |
|
| 6251 | 6251 | } |
| 6252 | 6252 | } |
| 6253 | 6253 | |
@@ -6261,19 +6261,19 @@ discard block |
||
| 6261 | 6261 | |
| 6262 | 6262 | public function setField($field) |
| 6263 | 6263 | { |
| 6264 | - $this->field = $field; |
|
| 6264 | + $this->field = $field; |
|
| 6265 | 6265 | } |
| 6266 | 6266 | public function getField() |
| 6267 | 6267 | { |
| 6268 | - return $this->field; |
|
| 6268 | + return $this->field; |
|
| 6269 | 6269 | } |
| 6270 | 6270 | public function setFieldIndex($fieldIndex) |
| 6271 | 6271 | { |
| 6272 | - $this->fieldIndex = $fieldIndex; |
|
| 6272 | + $this->fieldIndex = $fieldIndex; |
|
| 6273 | 6273 | } |
| 6274 | 6274 | public function getFieldIndex() |
| 6275 | 6275 | { |
| 6276 | - return $this->fieldIndex; |
|
| 6276 | + return $this->fieldIndex; |
|
| 6277 | 6277 | } |
| 6278 | 6278 | } |
| 6279 | 6279 | |
@@ -6287,19 +6287,19 @@ discard block |
||
| 6287 | 6287 | |
| 6288 | 6288 | public function setHref($href) |
| 6289 | 6289 | { |
| 6290 | - $this->href = $href; |
|
| 6290 | + $this->href = $href; |
|
| 6291 | 6291 | } |
| 6292 | 6292 | public function getHref() |
| 6293 | 6293 | { |
| 6294 | - return $this->href; |
|
| 6294 | + return $this->href; |
|
| 6295 | 6295 | } |
| 6296 | 6296 | public function setType($type) |
| 6297 | 6297 | { |
| 6298 | - $this->type = $type; |
|
| 6298 | + $this->type = $type; |
|
| 6299 | 6299 | } |
| 6300 | 6300 | public function getType() |
| 6301 | 6301 | { |
| 6302 | - return $this->type; |
|
| 6302 | + return $this->type; |
|
| 6303 | 6303 | } |
| 6304 | 6304 | } |
| 6305 | 6305 | |
@@ -6316,43 +6316,43 @@ discard block |
||
| 6316 | 6316 | |
| 6317 | 6317 | public function setAccountId($accountId) |
| 6318 | 6318 | { |
| 6319 | - $this->accountId = $accountId; |
|
| 6319 | + $this->accountId = $accountId; |
|
| 6320 | 6320 | } |
| 6321 | 6321 | public function getAccountId() |
| 6322 | 6322 | { |
| 6323 | - return $this->accountId; |
|
| 6323 | + return $this->accountId; |
|
| 6324 | 6324 | } |
| 6325 | 6325 | public function setHref($href) |
| 6326 | 6326 | { |
| 6327 | - $this->href = $href; |
|
| 6327 | + $this->href = $href; |
|
| 6328 | 6328 | } |
| 6329 | 6329 | public function getHref() |
| 6330 | 6330 | { |
| 6331 | - return $this->href; |
|
| 6331 | + return $this->href; |
|
| 6332 | 6332 | } |
| 6333 | 6333 | public function setId($id) |
| 6334 | 6334 | { |
| 6335 | - $this->id = $id; |
|
| 6335 | + $this->id = $id; |
|
| 6336 | 6336 | } |
| 6337 | 6337 | public function getId() |
| 6338 | 6338 | { |
| 6339 | - return $this->id; |
|
| 6339 | + return $this->id; |
|
| 6340 | 6340 | } |
| 6341 | 6341 | public function setKind($kind) |
| 6342 | 6342 | { |
| 6343 | - $this->kind = $kind; |
|
| 6343 | + $this->kind = $kind; |
|
| 6344 | 6344 | } |
| 6345 | 6345 | public function getKind() |
| 6346 | 6346 | { |
| 6347 | - return $this->kind; |
|
| 6347 | + return $this->kind; |
|
| 6348 | 6348 | } |
| 6349 | 6349 | public function setName($name) |
| 6350 | 6350 | { |
| 6351 | - $this->name = $name; |
|
| 6351 | + $this->name = $name; |
|
| 6352 | 6352 | } |
| 6353 | 6353 | public function getName() |
| 6354 | 6354 | { |
| 6355 | - return $this->name; |
|
| 6355 | + return $this->name; |
|
| 6356 | 6356 | } |
| 6357 | 6357 | } |
| 6358 | 6358 | |
@@ -6369,43 +6369,43 @@ discard block |
||
| 6369 | 6369 | |
| 6370 | 6370 | public function setCaseSensitive($caseSensitive) |
| 6371 | 6371 | { |
| 6372 | - $this->caseSensitive = $caseSensitive; |
|
| 6372 | + $this->caseSensitive = $caseSensitive; |
|
| 6373 | 6373 | } |
| 6374 | 6374 | public function getCaseSensitive() |
| 6375 | 6375 | { |
| 6376 | - return $this->caseSensitive; |
|
| 6376 | + return $this->caseSensitive; |
|
| 6377 | 6377 | } |
| 6378 | 6378 | public function setField($field) |
| 6379 | 6379 | { |
| 6380 | - $this->field = $field; |
|
| 6380 | + $this->field = $field; |
|
| 6381 | 6381 | } |
| 6382 | 6382 | public function getField() |
| 6383 | 6383 | { |
| 6384 | - return $this->field; |
|
| 6384 | + return $this->field; |
|
| 6385 | 6385 | } |
| 6386 | 6386 | public function setFieldIndex($fieldIndex) |
| 6387 | 6387 | { |
| 6388 | - $this->fieldIndex = $fieldIndex; |
|
| 6388 | + $this->fieldIndex = $fieldIndex; |
|
| 6389 | 6389 | } |
| 6390 | 6390 | public function getFieldIndex() |
| 6391 | 6391 | { |
| 6392 | - return $this->fieldIndex; |
|
| 6392 | + return $this->fieldIndex; |
|
| 6393 | 6393 | } |
| 6394 | 6394 | public function setReplaceString($replaceString) |
| 6395 | 6395 | { |
| 6396 | - $this->replaceString = $replaceString; |
|
| 6396 | + $this->replaceString = $replaceString; |
|
| 6397 | 6397 | } |
| 6398 | 6398 | public function getReplaceString() |
| 6399 | 6399 | { |
| 6400 | - return $this->replaceString; |
|
| 6400 | + return $this->replaceString; |
|
| 6401 | 6401 | } |
| 6402 | 6402 | public function setSearchString($searchString) |
| 6403 | 6403 | { |
| 6404 | - $this->searchString = $searchString; |
|
| 6404 | + $this->searchString = $searchString; |
|
| 6405 | 6405 | } |
| 6406 | 6406 | public function getSearchString() |
| 6407 | 6407 | { |
| 6408 | - return $this->searchString; |
|
| 6408 | + return $this->searchString; |
|
| 6409 | 6409 | } |
| 6410 | 6410 | } |
| 6411 | 6411 | |
@@ -6419,19 +6419,19 @@ discard block |
||
| 6419 | 6419 | |
| 6420 | 6420 | public function setField($field) |
| 6421 | 6421 | { |
| 6422 | - $this->field = $field; |
|
| 6422 | + $this->field = $field; |
|
| 6423 | 6423 | } |
| 6424 | 6424 | public function getField() |
| 6425 | 6425 | { |
| 6426 | - return $this->field; |
|
| 6426 | + return $this->field; |
|
| 6427 | 6427 | } |
| 6428 | 6428 | public function setFieldIndex($fieldIndex) |
| 6429 | 6429 | { |
| 6430 | - $this->fieldIndex = $fieldIndex; |
|
| 6430 | + $this->fieldIndex = $fieldIndex; |
|
| 6431 | 6431 | } |
| 6432 | 6432 | public function getFieldIndex() |
| 6433 | 6433 | { |
| 6434 | - return $this->fieldIndex; |
|
| 6434 | + return $this->fieldIndex; |
|
| 6435 | 6435 | } |
| 6436 | 6436 | } |
| 6437 | 6437 | |
@@ -6453,67 +6453,67 @@ discard block |
||
| 6453 | 6453 | |
| 6454 | 6454 | public function setItems($items) |
| 6455 | 6455 | { |
| 6456 | - $this->items = $items; |
|
| 6456 | + $this->items = $items; |
|
| 6457 | 6457 | } |
| 6458 | 6458 | public function getItems() |
| 6459 | 6459 | { |
| 6460 | - return $this->items; |
|
| 6460 | + return $this->items; |
|
| 6461 | 6461 | } |
| 6462 | 6462 | public function setItemsPerPage($itemsPerPage) |
| 6463 | 6463 | { |
| 6464 | - $this->itemsPerPage = $itemsPerPage; |
|
| 6464 | + $this->itemsPerPage = $itemsPerPage; |
|
| 6465 | 6465 | } |
| 6466 | 6466 | public function getItemsPerPage() |
| 6467 | 6467 | { |
| 6468 | - return $this->itemsPerPage; |
|
| 6468 | + return $this->itemsPerPage; |
|
| 6469 | 6469 | } |
| 6470 | 6470 | public function setKind($kind) |
| 6471 | 6471 | { |
| 6472 | - $this->kind = $kind; |
|
| 6472 | + $this->kind = $kind; |
|
| 6473 | 6473 | } |
| 6474 | 6474 | public function getKind() |
| 6475 | 6475 | { |
| 6476 | - return $this->kind; |
|
| 6476 | + return $this->kind; |
|
| 6477 | 6477 | } |
| 6478 | 6478 | public function setNextLink($nextLink) |
| 6479 | 6479 | { |
| 6480 | - $this->nextLink = $nextLink; |
|
| 6480 | + $this->nextLink = $nextLink; |
|
| 6481 | 6481 | } |
| 6482 | 6482 | public function getNextLink() |
| 6483 | 6483 | { |
| 6484 | - return $this->nextLink; |
|
| 6484 | + return $this->nextLink; |
|
| 6485 | 6485 | } |
| 6486 | 6486 | public function setPreviousLink($previousLink) |
| 6487 | 6487 | { |
| 6488 | - $this->previousLink = $previousLink; |
|
| 6488 | + $this->previousLink = $previousLink; |
|
| 6489 | 6489 | } |
| 6490 | 6490 | public function getPreviousLink() |
| 6491 | 6491 | { |
| 6492 | - return $this->previousLink; |
|
| 6492 | + return $this->previousLink; |
|
| 6493 | 6493 | } |
| 6494 | 6494 | public function setStartIndex($startIndex) |
| 6495 | 6495 | { |
| 6496 | - $this->startIndex = $startIndex; |
|
| 6496 | + $this->startIndex = $startIndex; |
|
| 6497 | 6497 | } |
| 6498 | 6498 | public function getStartIndex() |
| 6499 | 6499 | { |
| 6500 | - return $this->startIndex; |
|
| 6500 | + return $this->startIndex; |
|
| 6501 | 6501 | } |
| 6502 | 6502 | public function setTotalResults($totalResults) |
| 6503 | 6503 | { |
| 6504 | - $this->totalResults = $totalResults; |
|
| 6504 | + $this->totalResults = $totalResults; |
|
| 6505 | 6505 | } |
| 6506 | 6506 | public function getTotalResults() |
| 6507 | 6507 | { |
| 6508 | - return $this->totalResults; |
|
| 6508 | + return $this->totalResults; |
|
| 6509 | 6509 | } |
| 6510 | 6510 | public function setUsername($username) |
| 6511 | 6511 | { |
| 6512 | - $this->username = $username; |
|
| 6512 | + $this->username = $username; |
|
| 6513 | 6513 | } |
| 6514 | 6514 | public function getUsername() |
| 6515 | 6515 | { |
| 6516 | - return $this->username; |
|
| 6516 | + return $this->username; |
|
| 6517 | 6517 | } |
| 6518 | 6518 | } |
| 6519 | 6519 | |
@@ -6546,131 +6546,131 @@ discard block |
||
| 6546 | 6546 | |
| 6547 | 6547 | public function setColumnHeaders($columnHeaders) |
| 6548 | 6548 | { |
| 6549 | - $this->columnHeaders = $columnHeaders; |
|
| 6549 | + $this->columnHeaders = $columnHeaders; |
|
| 6550 | 6550 | } |
| 6551 | 6551 | public function getColumnHeaders() |
| 6552 | 6552 | { |
| 6553 | - return $this->columnHeaders; |
|
| 6553 | + return $this->columnHeaders; |
|
| 6554 | 6554 | } |
| 6555 | 6555 | public function setContainsSampledData($containsSampledData) |
| 6556 | 6556 | { |
| 6557 | - $this->containsSampledData = $containsSampledData; |
|
| 6557 | + $this->containsSampledData = $containsSampledData; |
|
| 6558 | 6558 | } |
| 6559 | 6559 | public function getContainsSampledData() |
| 6560 | 6560 | { |
| 6561 | - return $this->containsSampledData; |
|
| 6561 | + return $this->containsSampledData; |
|
| 6562 | 6562 | } |
| 6563 | 6563 | public function setDataTable(Google_Service_Analytics_GaDataDataTable $dataTable) |
| 6564 | 6564 | { |
| 6565 | - $this->dataTable = $dataTable; |
|
| 6565 | + $this->dataTable = $dataTable; |
|
| 6566 | 6566 | } |
| 6567 | 6567 | public function getDataTable() |
| 6568 | 6568 | { |
| 6569 | - return $this->dataTable; |
|
| 6569 | + return $this->dataTable; |
|
| 6570 | 6570 | } |
| 6571 | 6571 | public function setId($id) |
| 6572 | 6572 | { |
| 6573 | - $this->id = $id; |
|
| 6573 | + $this->id = $id; |
|
| 6574 | 6574 | } |
| 6575 | 6575 | public function getId() |
| 6576 | 6576 | { |
| 6577 | - return $this->id; |
|
| 6577 | + return $this->id; |
|
| 6578 | 6578 | } |
| 6579 | 6579 | public function setItemsPerPage($itemsPerPage) |
| 6580 | 6580 | { |
| 6581 | - $this->itemsPerPage = $itemsPerPage; |
|
| 6581 | + $this->itemsPerPage = $itemsPerPage; |
|
| 6582 | 6582 | } |
| 6583 | 6583 | public function getItemsPerPage() |
| 6584 | 6584 | { |
| 6585 | - return $this->itemsPerPage; |
|
| 6585 | + return $this->itemsPerPage; |
|
| 6586 | 6586 | } |
| 6587 | 6587 | public function setKind($kind) |
| 6588 | 6588 | { |
| 6589 | - $this->kind = $kind; |
|
| 6589 | + $this->kind = $kind; |
|
| 6590 | 6590 | } |
| 6591 | 6591 | public function getKind() |
| 6592 | 6592 | { |
| 6593 | - return $this->kind; |
|
| 6593 | + return $this->kind; |
|
| 6594 | 6594 | } |
| 6595 | 6595 | public function setNextLink($nextLink) |
| 6596 | 6596 | { |
| 6597 | - $this->nextLink = $nextLink; |
|
| 6597 | + $this->nextLink = $nextLink; |
|
| 6598 | 6598 | } |
| 6599 | 6599 | public function getNextLink() |
| 6600 | 6600 | { |
| 6601 | - return $this->nextLink; |
|
| 6601 | + return $this->nextLink; |
|
| 6602 | 6602 | } |
| 6603 | 6603 | public function setPreviousLink($previousLink) |
| 6604 | 6604 | { |
| 6605 | - $this->previousLink = $previousLink; |
|
| 6605 | + $this->previousLink = $previousLink; |
|
| 6606 | 6606 | } |
| 6607 | 6607 | public function getPreviousLink() |
| 6608 | 6608 | { |
| 6609 | - return $this->previousLink; |
|
| 6609 | + return $this->previousLink; |
|
| 6610 | 6610 | } |
| 6611 | 6611 | public function setProfileInfo(Google_Service_Analytics_GaDataProfileInfo $profileInfo) |
| 6612 | 6612 | { |
| 6613 | - $this->profileInfo = $profileInfo; |
|
| 6613 | + $this->profileInfo = $profileInfo; |
|
| 6614 | 6614 | } |
| 6615 | 6615 | public function getProfileInfo() |
| 6616 | 6616 | { |
| 6617 | - return $this->profileInfo; |
|
| 6617 | + return $this->profileInfo; |
|
| 6618 | 6618 | } |
| 6619 | 6619 | public function setQuery(Google_Service_Analytics_GaDataQuery $query) |
| 6620 | 6620 | { |
| 6621 | - $this->query = $query; |
|
| 6621 | + $this->query = $query; |
|
| 6622 | 6622 | } |
| 6623 | 6623 | public function getQuery() |
| 6624 | 6624 | { |
| 6625 | - return $this->query; |
|
| 6625 | + return $this->query; |
|
| 6626 | 6626 | } |
| 6627 | 6627 | public function setRows($rows) |
| 6628 | 6628 | { |
| 6629 | - $this->rows = $rows; |
|
| 6629 | + $this->rows = $rows; |
|
| 6630 | 6630 | } |
| 6631 | 6631 | public function getRows() |
| 6632 | 6632 | { |
| 6633 | - return $this->rows; |
|
| 6633 | + return $this->rows; |
|
| 6634 | 6634 | } |
| 6635 | 6635 | public function setSampleSize($sampleSize) |
| 6636 | 6636 | { |
| 6637 | - $this->sampleSize = $sampleSize; |
|
| 6637 | + $this->sampleSize = $sampleSize; |
|
| 6638 | 6638 | } |
| 6639 | 6639 | public function getSampleSize() |
| 6640 | 6640 | { |
| 6641 | - return $this->sampleSize; |
|
| 6641 | + return $this->sampleSize; |
|
| 6642 | 6642 | } |
| 6643 | 6643 | public function setSampleSpace($sampleSpace) |
| 6644 | 6644 | { |
| 6645 | - $this->sampleSpace = $sampleSpace; |
|
| 6645 | + $this->sampleSpace = $sampleSpace; |
|
| 6646 | 6646 | } |
| 6647 | 6647 | public function getSampleSpace() |
| 6648 | 6648 | { |
| 6649 | - return $this->sampleSpace; |
|
| 6649 | + return $this->sampleSpace; |
|
| 6650 | 6650 | } |
| 6651 | 6651 | public function setSelfLink($selfLink) |
| 6652 | 6652 | { |
| 6653 | - $this->selfLink = $selfLink; |
|
| 6653 | + $this->selfLink = $selfLink; |
|
| 6654 | 6654 | } |
| 6655 | 6655 | public function getSelfLink() |
| 6656 | 6656 | { |
| 6657 | - return $this->selfLink; |
|
| 6657 | + return $this->selfLink; |
|
| 6658 | 6658 | } |
| 6659 | 6659 | public function setTotalResults($totalResults) |
| 6660 | 6660 | { |
| 6661 | - $this->totalResults = $totalResults; |
|
| 6661 | + $this->totalResults = $totalResults; |
|
| 6662 | 6662 | } |
| 6663 | 6663 | public function getTotalResults() |
| 6664 | 6664 | { |
| 6665 | - return $this->totalResults; |
|
| 6665 | + return $this->totalResults; |
|
| 6666 | 6666 | } |
| 6667 | 6667 | public function setTotalsForAllResults($totalsForAllResults) |
| 6668 | 6668 | { |
| 6669 | - $this->totalsForAllResults = $totalsForAllResults; |
|
| 6669 | + $this->totalsForAllResults = $totalsForAllResults; |
|
| 6670 | 6670 | } |
| 6671 | 6671 | public function getTotalsForAllResults() |
| 6672 | 6672 | { |
| 6673 | - return $this->totalsForAllResults; |
|
| 6673 | + return $this->totalsForAllResults; |
|
| 6674 | 6674 | } |
| 6675 | 6675 | } |
| 6676 | 6676 | |
@@ -6685,27 +6685,27 @@ discard block |
||
| 6685 | 6685 | |
| 6686 | 6686 | public function setColumnType($columnType) |
| 6687 | 6687 | { |
| 6688 | - $this->columnType = $columnType; |
|
| 6688 | + $this->columnType = $columnType; |
|
| 6689 | 6689 | } |
| 6690 | 6690 | public function getColumnType() |
| 6691 | 6691 | { |
| 6692 | - return $this->columnType; |
|
| 6692 | + return $this->columnType; |
|
| 6693 | 6693 | } |
| 6694 | 6694 | public function setDataType($dataType) |
| 6695 | 6695 | { |
| 6696 | - $this->dataType = $dataType; |
|
| 6696 | + $this->dataType = $dataType; |
|
| 6697 | 6697 | } |
| 6698 | 6698 | public function getDataType() |
| 6699 | 6699 | { |
| 6700 | - return $this->dataType; |
|
| 6700 | + return $this->dataType; |
|
| 6701 | 6701 | } |
| 6702 | 6702 | public function setName($name) |
| 6703 | 6703 | { |
| 6704 | - $this->name = $name; |
|
| 6704 | + $this->name = $name; |
|
| 6705 | 6705 | } |
| 6706 | 6706 | public function getName() |
| 6707 | 6707 | { |
| 6708 | - return $this->name; |
|
| 6708 | + return $this->name; |
|
| 6709 | 6709 | } |
| 6710 | 6710 | } |
| 6711 | 6711 | |
@@ -6722,19 +6722,19 @@ discard block |
||
| 6722 | 6722 | |
| 6723 | 6723 | public function setCols($cols) |
| 6724 | 6724 | { |
| 6725 | - $this->cols = $cols; |
|
| 6725 | + $this->cols = $cols; |
|
| 6726 | 6726 | } |
| 6727 | 6727 | public function getCols() |
| 6728 | 6728 | { |
| 6729 | - return $this->cols; |
|
| 6729 | + return $this->cols; |
|
| 6730 | 6730 | } |
| 6731 | 6731 | public function setRows($rows) |
| 6732 | 6732 | { |
| 6733 | - $this->rows = $rows; |
|
| 6733 | + $this->rows = $rows; |
|
| 6734 | 6734 | } |
| 6735 | 6735 | public function getRows() |
| 6736 | 6736 | { |
| 6737 | - return $this->rows; |
|
| 6737 | + return $this->rows; |
|
| 6738 | 6738 | } |
| 6739 | 6739 | } |
| 6740 | 6740 | |
@@ -6749,27 +6749,27 @@ discard block |
||
| 6749 | 6749 | |
| 6750 | 6750 | public function setId($id) |
| 6751 | 6751 | { |
| 6752 | - $this->id = $id; |
|
| 6752 | + $this->id = $id; |
|
| 6753 | 6753 | } |
| 6754 | 6754 | public function getId() |
| 6755 | 6755 | { |
| 6756 | - return $this->id; |
|
| 6756 | + return $this->id; |
|
| 6757 | 6757 | } |
| 6758 | 6758 | public function setLabel($label) |
| 6759 | 6759 | { |
| 6760 | - $this->label = $label; |
|
| 6760 | + $this->label = $label; |
|
| 6761 | 6761 | } |
| 6762 | 6762 | public function getLabel() |
| 6763 | 6763 | { |
| 6764 | - return $this->label; |
|
| 6764 | + return $this->label; |
|
| 6765 | 6765 | } |
| 6766 | 6766 | public function setType($type) |
| 6767 | 6767 | { |
| 6768 | - $this->type = $type; |
|
| 6768 | + $this->type = $type; |
|
| 6769 | 6769 | } |
| 6770 | 6770 | public function getType() |
| 6771 | 6771 | { |
| 6772 | - return $this->type; |
|
| 6772 | + return $this->type; |
|
| 6773 | 6773 | } |
| 6774 | 6774 | } |
| 6775 | 6775 | |
@@ -6784,11 +6784,11 @@ discard block |
||
| 6784 | 6784 | |
| 6785 | 6785 | public function setC($c) |
| 6786 | 6786 | { |
| 6787 | - $this->c = $c; |
|
| 6787 | + $this->c = $c; |
|
| 6788 | 6788 | } |
| 6789 | 6789 | public function getC() |
| 6790 | 6790 | { |
| 6791 | - return $this->c; |
|
| 6791 | + return $this->c; |
|
| 6792 | 6792 | } |
| 6793 | 6793 | } |
| 6794 | 6794 | |
@@ -6801,11 +6801,11 @@ discard block |
||
| 6801 | 6801 | |
| 6802 | 6802 | public function setV($v) |
| 6803 | 6803 | { |
| 6804 | - $this->v = $v; |
|
| 6804 | + $this->v = $v; |
|
| 6805 | 6805 | } |
| 6806 | 6806 | public function getV() |
| 6807 | 6807 | { |
| 6808 | - return $this->v; |
|
| 6808 | + return $this->v; |
|
| 6809 | 6809 | } |
| 6810 | 6810 | } |
| 6811 | 6811 | |
@@ -6823,51 +6823,51 @@ discard block |
||
| 6823 | 6823 | |
| 6824 | 6824 | public function setAccountId($accountId) |
| 6825 | 6825 | { |
| 6826 | - $this->accountId = $accountId; |
|
| 6826 | + $this->accountId = $accountId; |
|
| 6827 | 6827 | } |
| 6828 | 6828 | public function getAccountId() |
| 6829 | 6829 | { |
| 6830 | - return $this->accountId; |
|
| 6830 | + return $this->accountId; |
|
| 6831 | 6831 | } |
| 6832 | 6832 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 6833 | 6833 | { |
| 6834 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 6834 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 6835 | 6835 | } |
| 6836 | 6836 | public function getInternalWebPropertyId() |
| 6837 | 6837 | { |
| 6838 | - return $this->internalWebPropertyId; |
|
| 6838 | + return $this->internalWebPropertyId; |
|
| 6839 | 6839 | } |
| 6840 | 6840 | public function setProfileId($profileId) |
| 6841 | 6841 | { |
| 6842 | - $this->profileId = $profileId; |
|
| 6842 | + $this->profileId = $profileId; |
|
| 6843 | 6843 | } |
| 6844 | 6844 | public function getProfileId() |
| 6845 | 6845 | { |
| 6846 | - return $this->profileId; |
|
| 6846 | + return $this->profileId; |
|
| 6847 | 6847 | } |
| 6848 | 6848 | public function setProfileName($profileName) |
| 6849 | 6849 | { |
| 6850 | - $this->profileName = $profileName; |
|
| 6850 | + $this->profileName = $profileName; |
|
| 6851 | 6851 | } |
| 6852 | 6852 | public function getProfileName() |
| 6853 | 6853 | { |
| 6854 | - return $this->profileName; |
|
| 6854 | + return $this->profileName; |
|
| 6855 | 6855 | } |
| 6856 | 6856 | public function setTableId($tableId) |
| 6857 | 6857 | { |
| 6858 | - $this->tableId = $tableId; |
|
| 6858 | + $this->tableId = $tableId; |
|
| 6859 | 6859 | } |
| 6860 | 6860 | public function getTableId() |
| 6861 | 6861 | { |
| 6862 | - return $this->tableId; |
|
| 6862 | + return $this->tableId; |
|
| 6863 | 6863 | } |
| 6864 | 6864 | public function setWebPropertyId($webPropertyId) |
| 6865 | 6865 | { |
| 6866 | - $this->webPropertyId = $webPropertyId; |
|
| 6866 | + $this->webPropertyId = $webPropertyId; |
|
| 6867 | 6867 | } |
| 6868 | 6868 | public function getWebPropertyId() |
| 6869 | 6869 | { |
| 6870 | - return $this->webPropertyId; |
|
| 6870 | + return $this->webPropertyId; |
|
| 6871 | 6871 | } |
| 6872 | 6872 | } |
| 6873 | 6873 | |
@@ -6875,10 +6875,10 @@ discard block |
||
| 6875 | 6875 | { |
| 6876 | 6876 | protected $collection_key = 'sort'; |
| 6877 | 6877 | protected $internal_gapi_mappings = array( |
| 6878 | - "endDate" => "end-date", |
|
| 6879 | - "maxResults" => "max-results", |
|
| 6880 | - "startDate" => "start-date", |
|
| 6881 | - "startIndex" => "start-index", |
|
| 6878 | + "endDate" => "end-date", |
|
| 6879 | + "maxResults" => "max-results", |
|
| 6880 | + "startDate" => "start-date", |
|
| 6881 | + "startIndex" => "start-index", |
|
| 6882 | 6882 | ); |
| 6883 | 6883 | public $dimensions; |
| 6884 | 6884 | public $endDate; |
@@ -6895,91 +6895,91 @@ discard block |
||
| 6895 | 6895 | |
| 6896 | 6896 | public function setDimensions($dimensions) |
| 6897 | 6897 | { |
| 6898 | - $this->dimensions = $dimensions; |
|
| 6898 | + $this->dimensions = $dimensions; |
|
| 6899 | 6899 | } |
| 6900 | 6900 | public function getDimensions() |
| 6901 | 6901 | { |
| 6902 | - return $this->dimensions; |
|
| 6902 | + return $this->dimensions; |
|
| 6903 | 6903 | } |
| 6904 | 6904 | public function setEndDate($endDate) |
| 6905 | 6905 | { |
| 6906 | - $this->endDate = $endDate; |
|
| 6906 | + $this->endDate = $endDate; |
|
| 6907 | 6907 | } |
| 6908 | 6908 | public function getEndDate() |
| 6909 | 6909 | { |
| 6910 | - return $this->endDate; |
|
| 6910 | + return $this->endDate; |
|
| 6911 | 6911 | } |
| 6912 | 6912 | public function setFilters($filters) |
| 6913 | 6913 | { |
| 6914 | - $this->filters = $filters; |
|
| 6914 | + $this->filters = $filters; |
|
| 6915 | 6915 | } |
| 6916 | 6916 | public function getFilters() |
| 6917 | 6917 | { |
| 6918 | - return $this->filters; |
|
| 6918 | + return $this->filters; |
|
| 6919 | 6919 | } |
| 6920 | 6920 | public function setIds($ids) |
| 6921 | 6921 | { |
| 6922 | - $this->ids = $ids; |
|
| 6922 | + $this->ids = $ids; |
|
| 6923 | 6923 | } |
| 6924 | 6924 | public function getIds() |
| 6925 | 6925 | { |
| 6926 | - return $this->ids; |
|
| 6926 | + return $this->ids; |
|
| 6927 | 6927 | } |
| 6928 | 6928 | public function setMaxResults($maxResults) |
| 6929 | 6929 | { |
| 6930 | - $this->maxResults = $maxResults; |
|
| 6930 | + $this->maxResults = $maxResults; |
|
| 6931 | 6931 | } |
| 6932 | 6932 | public function getMaxResults() |
| 6933 | 6933 | { |
| 6934 | - return $this->maxResults; |
|
| 6934 | + return $this->maxResults; |
|
| 6935 | 6935 | } |
| 6936 | 6936 | public function setMetrics($metrics) |
| 6937 | 6937 | { |
| 6938 | - $this->metrics = $metrics; |
|
| 6938 | + $this->metrics = $metrics; |
|
| 6939 | 6939 | } |
| 6940 | 6940 | public function getMetrics() |
| 6941 | 6941 | { |
| 6942 | - return $this->metrics; |
|
| 6942 | + return $this->metrics; |
|
| 6943 | 6943 | } |
| 6944 | 6944 | public function setSamplingLevel($samplingLevel) |
| 6945 | 6945 | { |
| 6946 | - $this->samplingLevel = $samplingLevel; |
|
| 6946 | + $this->samplingLevel = $samplingLevel; |
|
| 6947 | 6947 | } |
| 6948 | 6948 | public function getSamplingLevel() |
| 6949 | 6949 | { |
| 6950 | - return $this->samplingLevel; |
|
| 6950 | + return $this->samplingLevel; |
|
| 6951 | 6951 | } |
| 6952 | 6952 | public function setSegment($segment) |
| 6953 | 6953 | { |
| 6954 | - $this->segment = $segment; |
|
| 6954 | + $this->segment = $segment; |
|
| 6955 | 6955 | } |
| 6956 | 6956 | public function getSegment() |
| 6957 | 6957 | { |
| 6958 | - return $this->segment; |
|
| 6958 | + return $this->segment; |
|
| 6959 | 6959 | } |
| 6960 | 6960 | public function setSort($sort) |
| 6961 | 6961 | { |
| 6962 | - $this->sort = $sort; |
|
| 6962 | + $this->sort = $sort; |
|
| 6963 | 6963 | } |
| 6964 | 6964 | public function getSort() |
| 6965 | 6965 | { |
| 6966 | - return $this->sort; |
|
| 6966 | + return $this->sort; |
|
| 6967 | 6967 | } |
| 6968 | 6968 | public function setStartDate($startDate) |
| 6969 | 6969 | { |
| 6970 | - $this->startDate = $startDate; |
|
| 6970 | + $this->startDate = $startDate; |
|
| 6971 | 6971 | } |
| 6972 | 6972 | public function getStartDate() |
| 6973 | 6973 | { |
| 6974 | - return $this->startDate; |
|
| 6974 | + return $this->startDate; |
|
| 6975 | 6975 | } |
| 6976 | 6976 | public function setStartIndex($startIndex) |
| 6977 | 6977 | { |
| 6978 | - $this->startIndex = $startIndex; |
|
| 6978 | + $this->startIndex = $startIndex; |
|
| 6979 | 6979 | } |
| 6980 | 6980 | public function getStartIndex() |
| 6981 | 6981 | { |
| 6982 | - return $this->startIndex; |
|
| 6982 | + return $this->startIndex; |
|
| 6983 | 6983 | } |
| 6984 | 6984 | } |
| 6985 | 6985 | |
@@ -7018,147 +7018,147 @@ discard block |
||
| 7018 | 7018 | |
| 7019 | 7019 | public function setAccountId($accountId) |
| 7020 | 7020 | { |
| 7021 | - $this->accountId = $accountId; |
|
| 7021 | + $this->accountId = $accountId; |
|
| 7022 | 7022 | } |
| 7023 | 7023 | public function getAccountId() |
| 7024 | 7024 | { |
| 7025 | - return $this->accountId; |
|
| 7025 | + return $this->accountId; |
|
| 7026 | 7026 | } |
| 7027 | 7027 | public function setActive($active) |
| 7028 | 7028 | { |
| 7029 | - $this->active = $active; |
|
| 7029 | + $this->active = $active; |
|
| 7030 | 7030 | } |
| 7031 | 7031 | public function getActive() |
| 7032 | 7032 | { |
| 7033 | - return $this->active; |
|
| 7033 | + return $this->active; |
|
| 7034 | 7034 | } |
| 7035 | 7035 | public function setCreated($created) |
| 7036 | 7036 | { |
| 7037 | - $this->created = $created; |
|
| 7037 | + $this->created = $created; |
|
| 7038 | 7038 | } |
| 7039 | 7039 | public function getCreated() |
| 7040 | 7040 | { |
| 7041 | - return $this->created; |
|
| 7041 | + return $this->created; |
|
| 7042 | 7042 | } |
| 7043 | 7043 | public function setEventDetails(Google_Service_Analytics_GoalEventDetails $eventDetails) |
| 7044 | 7044 | { |
| 7045 | - $this->eventDetails = $eventDetails; |
|
| 7045 | + $this->eventDetails = $eventDetails; |
|
| 7046 | 7046 | } |
| 7047 | 7047 | public function getEventDetails() |
| 7048 | 7048 | { |
| 7049 | - return $this->eventDetails; |
|
| 7049 | + return $this->eventDetails; |
|
| 7050 | 7050 | } |
| 7051 | 7051 | public function setId($id) |
| 7052 | 7052 | { |
| 7053 | - $this->id = $id; |
|
| 7053 | + $this->id = $id; |
|
| 7054 | 7054 | } |
| 7055 | 7055 | public function getId() |
| 7056 | 7056 | { |
| 7057 | - return $this->id; |
|
| 7057 | + return $this->id; |
|
| 7058 | 7058 | } |
| 7059 | 7059 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 7060 | 7060 | { |
| 7061 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 7061 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 7062 | 7062 | } |
| 7063 | 7063 | public function getInternalWebPropertyId() |
| 7064 | 7064 | { |
| 7065 | - return $this->internalWebPropertyId; |
|
| 7065 | + return $this->internalWebPropertyId; |
|
| 7066 | 7066 | } |
| 7067 | 7067 | public function setKind($kind) |
| 7068 | 7068 | { |
| 7069 | - $this->kind = $kind; |
|
| 7069 | + $this->kind = $kind; |
|
| 7070 | 7070 | } |
| 7071 | 7071 | public function getKind() |
| 7072 | 7072 | { |
| 7073 | - return $this->kind; |
|
| 7073 | + return $this->kind; |
|
| 7074 | 7074 | } |
| 7075 | 7075 | public function setName($name) |
| 7076 | 7076 | { |
| 7077 | - $this->name = $name; |
|
| 7077 | + $this->name = $name; |
|
| 7078 | 7078 | } |
| 7079 | 7079 | public function getName() |
| 7080 | 7080 | { |
| 7081 | - return $this->name; |
|
| 7081 | + return $this->name; |
|
| 7082 | 7082 | } |
| 7083 | 7083 | public function setParentLink(Google_Service_Analytics_GoalParentLink $parentLink) |
| 7084 | 7084 | { |
| 7085 | - $this->parentLink = $parentLink; |
|
| 7085 | + $this->parentLink = $parentLink; |
|
| 7086 | 7086 | } |
| 7087 | 7087 | public function getParentLink() |
| 7088 | 7088 | { |
| 7089 | - return $this->parentLink; |
|
| 7089 | + return $this->parentLink; |
|
| 7090 | 7090 | } |
| 7091 | 7091 | public function setProfileId($profileId) |
| 7092 | 7092 | { |
| 7093 | - $this->profileId = $profileId; |
|
| 7093 | + $this->profileId = $profileId; |
|
| 7094 | 7094 | } |
| 7095 | 7095 | public function getProfileId() |
| 7096 | 7096 | { |
| 7097 | - return $this->profileId; |
|
| 7097 | + return $this->profileId; |
|
| 7098 | 7098 | } |
| 7099 | 7099 | public function setSelfLink($selfLink) |
| 7100 | 7100 | { |
| 7101 | - $this->selfLink = $selfLink; |
|
| 7101 | + $this->selfLink = $selfLink; |
|
| 7102 | 7102 | } |
| 7103 | 7103 | public function getSelfLink() |
| 7104 | 7104 | { |
| 7105 | - return $this->selfLink; |
|
| 7105 | + return $this->selfLink; |
|
| 7106 | 7106 | } |
| 7107 | 7107 | public function setType($type) |
| 7108 | 7108 | { |
| 7109 | - $this->type = $type; |
|
| 7109 | + $this->type = $type; |
|
| 7110 | 7110 | } |
| 7111 | 7111 | public function getType() |
| 7112 | 7112 | { |
| 7113 | - return $this->type; |
|
| 7113 | + return $this->type; |
|
| 7114 | 7114 | } |
| 7115 | 7115 | public function setUpdated($updated) |
| 7116 | 7116 | { |
| 7117 | - $this->updated = $updated; |
|
| 7117 | + $this->updated = $updated; |
|
| 7118 | 7118 | } |
| 7119 | 7119 | public function getUpdated() |
| 7120 | 7120 | { |
| 7121 | - return $this->updated; |
|
| 7121 | + return $this->updated; |
|
| 7122 | 7122 | } |
| 7123 | 7123 | public function setUrlDestinationDetails(Google_Service_Analytics_GoalUrlDestinationDetails $urlDestinationDetails) |
| 7124 | 7124 | { |
| 7125 | - $this->urlDestinationDetails = $urlDestinationDetails; |
|
| 7125 | + $this->urlDestinationDetails = $urlDestinationDetails; |
|
| 7126 | 7126 | } |
| 7127 | 7127 | public function getUrlDestinationDetails() |
| 7128 | 7128 | { |
| 7129 | - return $this->urlDestinationDetails; |
|
| 7129 | + return $this->urlDestinationDetails; |
|
| 7130 | 7130 | } |
| 7131 | 7131 | public function setValue($value) |
| 7132 | 7132 | { |
| 7133 | - $this->value = $value; |
|
| 7133 | + $this->value = $value; |
|
| 7134 | 7134 | } |
| 7135 | 7135 | public function getValue() |
| 7136 | 7136 | { |
| 7137 | - return $this->value; |
|
| 7137 | + return $this->value; |
|
| 7138 | 7138 | } |
| 7139 | 7139 | public function setVisitNumPagesDetails(Google_Service_Analytics_GoalVisitNumPagesDetails $visitNumPagesDetails) |
| 7140 | 7140 | { |
| 7141 | - $this->visitNumPagesDetails = $visitNumPagesDetails; |
|
| 7141 | + $this->visitNumPagesDetails = $visitNumPagesDetails; |
|
| 7142 | 7142 | } |
| 7143 | 7143 | public function getVisitNumPagesDetails() |
| 7144 | 7144 | { |
| 7145 | - return $this->visitNumPagesDetails; |
|
| 7145 | + return $this->visitNumPagesDetails; |
|
| 7146 | 7146 | } |
| 7147 | 7147 | public function setVisitTimeOnSiteDetails(Google_Service_Analytics_GoalVisitTimeOnSiteDetails $visitTimeOnSiteDetails) |
| 7148 | 7148 | { |
| 7149 | - $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails; |
|
| 7149 | + $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails; |
|
| 7150 | 7150 | } |
| 7151 | 7151 | public function getVisitTimeOnSiteDetails() |
| 7152 | 7152 | { |
| 7153 | - return $this->visitTimeOnSiteDetails; |
|
| 7153 | + return $this->visitTimeOnSiteDetails; |
|
| 7154 | 7154 | } |
| 7155 | 7155 | public function setWebPropertyId($webPropertyId) |
| 7156 | 7156 | { |
| 7157 | - $this->webPropertyId = $webPropertyId; |
|
| 7157 | + $this->webPropertyId = $webPropertyId; |
|
| 7158 | 7158 | } |
| 7159 | 7159 | public function getWebPropertyId() |
| 7160 | 7160 | { |
| 7161 | - return $this->webPropertyId; |
|
| 7161 | + return $this->webPropertyId; |
|
| 7162 | 7162 | } |
| 7163 | 7163 | } |
| 7164 | 7164 | |
@@ -7174,19 +7174,19 @@ discard block |
||
| 7174 | 7174 | |
| 7175 | 7175 | public function setEventConditions($eventConditions) |
| 7176 | 7176 | { |
| 7177 | - $this->eventConditions = $eventConditions; |
|
| 7177 | + $this->eventConditions = $eventConditions; |
|
| 7178 | 7178 | } |
| 7179 | 7179 | public function getEventConditions() |
| 7180 | 7180 | { |
| 7181 | - return $this->eventConditions; |
|
| 7181 | + return $this->eventConditions; |
|
| 7182 | 7182 | } |
| 7183 | 7183 | public function setUseEventValue($useEventValue) |
| 7184 | 7184 | { |
| 7185 | - $this->useEventValue = $useEventValue; |
|
| 7185 | + $this->useEventValue = $useEventValue; |
|
| 7186 | 7186 | } |
| 7187 | 7187 | public function getUseEventValue() |
| 7188 | 7188 | { |
| 7189 | - return $this->useEventValue; |
|
| 7189 | + return $this->useEventValue; |
|
| 7190 | 7190 | } |
| 7191 | 7191 | } |
| 7192 | 7192 | |
@@ -7203,43 +7203,43 @@ discard block |
||
| 7203 | 7203 | |
| 7204 | 7204 | public function setComparisonType($comparisonType) |
| 7205 | 7205 | { |
| 7206 | - $this->comparisonType = $comparisonType; |
|
| 7206 | + $this->comparisonType = $comparisonType; |
|
| 7207 | 7207 | } |
| 7208 | 7208 | public function getComparisonType() |
| 7209 | 7209 | { |
| 7210 | - return $this->comparisonType; |
|
| 7210 | + return $this->comparisonType; |
|
| 7211 | 7211 | } |
| 7212 | 7212 | public function setComparisonValue($comparisonValue) |
| 7213 | 7213 | { |
| 7214 | - $this->comparisonValue = $comparisonValue; |
|
| 7214 | + $this->comparisonValue = $comparisonValue; |
|
| 7215 | 7215 | } |
| 7216 | 7216 | public function getComparisonValue() |
| 7217 | 7217 | { |
| 7218 | - return $this->comparisonValue; |
|
| 7218 | + return $this->comparisonValue; |
|
| 7219 | 7219 | } |
| 7220 | 7220 | public function setExpression($expression) |
| 7221 | 7221 | { |
| 7222 | - $this->expression = $expression; |
|
| 7222 | + $this->expression = $expression; |
|
| 7223 | 7223 | } |
| 7224 | 7224 | public function getExpression() |
| 7225 | 7225 | { |
| 7226 | - return $this->expression; |
|
| 7226 | + return $this->expression; |
|
| 7227 | 7227 | } |
| 7228 | 7228 | public function setMatchType($matchType) |
| 7229 | 7229 | { |
| 7230 | - $this->matchType = $matchType; |
|
| 7230 | + $this->matchType = $matchType; |
|
| 7231 | 7231 | } |
| 7232 | 7232 | public function getMatchType() |
| 7233 | 7233 | { |
| 7234 | - return $this->matchType; |
|
| 7234 | + return $this->matchType; |
|
| 7235 | 7235 | } |
| 7236 | 7236 | public function setType($type) |
| 7237 | 7237 | { |
| 7238 | - $this->type = $type; |
|
| 7238 | + $this->type = $type; |
|
| 7239 | 7239 | } |
| 7240 | 7240 | public function getType() |
| 7241 | 7241 | { |
| 7242 | - return $this->type; |
|
| 7242 | + return $this->type; |
|
| 7243 | 7243 | } |
| 7244 | 7244 | } |
| 7245 | 7245 | |
@@ -7253,19 +7253,19 @@ discard block |
||
| 7253 | 7253 | |
| 7254 | 7254 | public function setHref($href) |
| 7255 | 7255 | { |
| 7256 | - $this->href = $href; |
|
| 7256 | + $this->href = $href; |
|
| 7257 | 7257 | } |
| 7258 | 7258 | public function getHref() |
| 7259 | 7259 | { |
| 7260 | - return $this->href; |
|
| 7260 | + return $this->href; |
|
| 7261 | 7261 | } |
| 7262 | 7262 | public function setType($type) |
| 7263 | 7263 | { |
| 7264 | - $this->type = $type; |
|
| 7264 | + $this->type = $type; |
|
| 7265 | 7265 | } |
| 7266 | 7266 | public function getType() |
| 7267 | 7267 | { |
| 7268 | - return $this->type; |
|
| 7268 | + return $this->type; |
|
| 7269 | 7269 | } |
| 7270 | 7270 | } |
| 7271 | 7271 | |
@@ -7284,43 +7284,43 @@ discard block |
||
| 7284 | 7284 | |
| 7285 | 7285 | public function setCaseSensitive($caseSensitive) |
| 7286 | 7286 | { |
| 7287 | - $this->caseSensitive = $caseSensitive; |
|
| 7287 | + $this->caseSensitive = $caseSensitive; |
|
| 7288 | 7288 | } |
| 7289 | 7289 | public function getCaseSensitive() |
| 7290 | 7290 | { |
| 7291 | - return $this->caseSensitive; |
|
| 7291 | + return $this->caseSensitive; |
|
| 7292 | 7292 | } |
| 7293 | 7293 | public function setFirstStepRequired($firstStepRequired) |
| 7294 | 7294 | { |
| 7295 | - $this->firstStepRequired = $firstStepRequired; |
|
| 7295 | + $this->firstStepRequired = $firstStepRequired; |
|
| 7296 | 7296 | } |
| 7297 | 7297 | public function getFirstStepRequired() |
| 7298 | 7298 | { |
| 7299 | - return $this->firstStepRequired; |
|
| 7299 | + return $this->firstStepRequired; |
|
| 7300 | 7300 | } |
| 7301 | 7301 | public function setMatchType($matchType) |
| 7302 | 7302 | { |
| 7303 | - $this->matchType = $matchType; |
|
| 7303 | + $this->matchType = $matchType; |
|
| 7304 | 7304 | } |
| 7305 | 7305 | public function getMatchType() |
| 7306 | 7306 | { |
| 7307 | - return $this->matchType; |
|
| 7307 | + return $this->matchType; |
|
| 7308 | 7308 | } |
| 7309 | 7309 | public function setSteps($steps) |
| 7310 | 7310 | { |
| 7311 | - $this->steps = $steps; |
|
| 7311 | + $this->steps = $steps; |
|
| 7312 | 7312 | } |
| 7313 | 7313 | public function getSteps() |
| 7314 | 7314 | { |
| 7315 | - return $this->steps; |
|
| 7315 | + return $this->steps; |
|
| 7316 | 7316 | } |
| 7317 | 7317 | public function setUrl($url) |
| 7318 | 7318 | { |
| 7319 | - $this->url = $url; |
|
| 7319 | + $this->url = $url; |
|
| 7320 | 7320 | } |
| 7321 | 7321 | public function getUrl() |
| 7322 | 7322 | { |
| 7323 | - return $this->url; |
|
| 7323 | + return $this->url; |
|
| 7324 | 7324 | } |
| 7325 | 7325 | } |
| 7326 | 7326 | |
@@ -7335,27 +7335,27 @@ discard block |
||
| 7335 | 7335 | |
| 7336 | 7336 | public function setName($name) |
| 7337 | 7337 | { |
| 7338 | - $this->name = $name; |
|
| 7338 | + $this->name = $name; |
|
| 7339 | 7339 | } |
| 7340 | 7340 | public function getName() |
| 7341 | 7341 | { |
| 7342 | - return $this->name; |
|
| 7342 | + return $this->name; |
|
| 7343 | 7343 | } |
| 7344 | 7344 | public function setNumber($number) |
| 7345 | 7345 | { |
| 7346 | - $this->number = $number; |
|
| 7346 | + $this->number = $number; |
|
| 7347 | 7347 | } |
| 7348 | 7348 | public function getNumber() |
| 7349 | 7349 | { |
| 7350 | - return $this->number; |
|
| 7350 | + return $this->number; |
|
| 7351 | 7351 | } |
| 7352 | 7352 | public function setUrl($url) |
| 7353 | 7353 | { |
| 7354 | - $this->url = $url; |
|
| 7354 | + $this->url = $url; |
|
| 7355 | 7355 | } |
| 7356 | 7356 | public function getUrl() |
| 7357 | 7357 | { |
| 7358 | - return $this->url; |
|
| 7358 | + return $this->url; |
|
| 7359 | 7359 | } |
| 7360 | 7360 | } |
| 7361 | 7361 | |
@@ -7369,19 +7369,19 @@ discard block |
||
| 7369 | 7369 | |
| 7370 | 7370 | public function setComparisonType($comparisonType) |
| 7371 | 7371 | { |
| 7372 | - $this->comparisonType = $comparisonType; |
|
| 7372 | + $this->comparisonType = $comparisonType; |
|
| 7373 | 7373 | } |
| 7374 | 7374 | public function getComparisonType() |
| 7375 | 7375 | { |
| 7376 | - return $this->comparisonType; |
|
| 7376 | + return $this->comparisonType; |
|
| 7377 | 7377 | } |
| 7378 | 7378 | public function setComparisonValue($comparisonValue) |
| 7379 | 7379 | { |
| 7380 | - $this->comparisonValue = $comparisonValue; |
|
| 7380 | + $this->comparisonValue = $comparisonValue; |
|
| 7381 | 7381 | } |
| 7382 | 7382 | public function getComparisonValue() |
| 7383 | 7383 | { |
| 7384 | - return $this->comparisonValue; |
|
| 7384 | + return $this->comparisonValue; |
|
| 7385 | 7385 | } |
| 7386 | 7386 | } |
| 7387 | 7387 | |
@@ -7395,19 +7395,19 @@ discard block |
||
| 7395 | 7395 | |
| 7396 | 7396 | public function setComparisonType($comparisonType) |
| 7397 | 7397 | { |
| 7398 | - $this->comparisonType = $comparisonType; |
|
| 7398 | + $this->comparisonType = $comparisonType; |
|
| 7399 | 7399 | } |
| 7400 | 7400 | public function getComparisonType() |
| 7401 | 7401 | { |
| 7402 | - return $this->comparisonType; |
|
| 7402 | + return $this->comparisonType; |
|
| 7403 | 7403 | } |
| 7404 | 7404 | public function setComparisonValue($comparisonValue) |
| 7405 | 7405 | { |
| 7406 | - $this->comparisonValue = $comparisonValue; |
|
| 7406 | + $this->comparisonValue = $comparisonValue; |
|
| 7407 | 7407 | } |
| 7408 | 7408 | public function getComparisonValue() |
| 7409 | 7409 | { |
| 7410 | - return $this->comparisonValue; |
|
| 7410 | + return $this->comparisonValue; |
|
| 7411 | 7411 | } |
| 7412 | 7412 | } |
| 7413 | 7413 | |
@@ -7429,67 +7429,67 @@ discard block |
||
| 7429 | 7429 | |
| 7430 | 7430 | public function setItems($items) |
| 7431 | 7431 | { |
| 7432 | - $this->items = $items; |
|
| 7432 | + $this->items = $items; |
|
| 7433 | 7433 | } |
| 7434 | 7434 | public function getItems() |
| 7435 | 7435 | { |
| 7436 | - return $this->items; |
|
| 7436 | + return $this->items; |
|
| 7437 | 7437 | } |
| 7438 | 7438 | public function setItemsPerPage($itemsPerPage) |
| 7439 | 7439 | { |
| 7440 | - $this->itemsPerPage = $itemsPerPage; |
|
| 7440 | + $this->itemsPerPage = $itemsPerPage; |
|
| 7441 | 7441 | } |
| 7442 | 7442 | public function getItemsPerPage() |
| 7443 | 7443 | { |
| 7444 | - return $this->itemsPerPage; |
|
| 7444 | + return $this->itemsPerPage; |
|
| 7445 | 7445 | } |
| 7446 | 7446 | public function setKind($kind) |
| 7447 | 7447 | { |
| 7448 | - $this->kind = $kind; |
|
| 7448 | + $this->kind = $kind; |
|
| 7449 | 7449 | } |
| 7450 | 7450 | public function getKind() |
| 7451 | 7451 | { |
| 7452 | - return $this->kind; |
|
| 7452 | + return $this->kind; |
|
| 7453 | 7453 | } |
| 7454 | 7454 | public function setNextLink($nextLink) |
| 7455 | 7455 | { |
| 7456 | - $this->nextLink = $nextLink; |
|
| 7456 | + $this->nextLink = $nextLink; |
|
| 7457 | 7457 | } |
| 7458 | 7458 | public function getNextLink() |
| 7459 | 7459 | { |
| 7460 | - return $this->nextLink; |
|
| 7460 | + return $this->nextLink; |
|
| 7461 | 7461 | } |
| 7462 | 7462 | public function setPreviousLink($previousLink) |
| 7463 | 7463 | { |
| 7464 | - $this->previousLink = $previousLink; |
|
| 7464 | + $this->previousLink = $previousLink; |
|
| 7465 | 7465 | } |
| 7466 | 7466 | public function getPreviousLink() |
| 7467 | 7467 | { |
| 7468 | - return $this->previousLink; |
|
| 7468 | + return $this->previousLink; |
|
| 7469 | 7469 | } |
| 7470 | 7470 | public function setStartIndex($startIndex) |
| 7471 | 7471 | { |
| 7472 | - $this->startIndex = $startIndex; |
|
| 7472 | + $this->startIndex = $startIndex; |
|
| 7473 | 7473 | } |
| 7474 | 7474 | public function getStartIndex() |
| 7475 | 7475 | { |
| 7476 | - return $this->startIndex; |
|
| 7476 | + return $this->startIndex; |
|
| 7477 | 7477 | } |
| 7478 | 7478 | public function setTotalResults($totalResults) |
| 7479 | 7479 | { |
| 7480 | - $this->totalResults = $totalResults; |
|
| 7480 | + $this->totalResults = $totalResults; |
|
| 7481 | 7481 | } |
| 7482 | 7482 | public function getTotalResults() |
| 7483 | 7483 | { |
| 7484 | - return $this->totalResults; |
|
| 7484 | + return $this->totalResults; |
|
| 7485 | 7485 | } |
| 7486 | 7486 | public function setUsername($username) |
| 7487 | 7487 | { |
| 7488 | - $this->username = $username; |
|
| 7488 | + $this->username = $username; |
|
| 7489 | 7489 | } |
| 7490 | 7490 | public function getUsername() |
| 7491 | 7491 | { |
| 7492 | - return $this->username; |
|
| 7492 | + return $this->username; |
|
| 7493 | 7493 | } |
| 7494 | 7494 | } |
| 7495 | 7495 | |
@@ -7521,123 +7521,123 @@ discard block |
||
| 7521 | 7521 | |
| 7522 | 7522 | public function setColumnHeaders($columnHeaders) |
| 7523 | 7523 | { |
| 7524 | - $this->columnHeaders = $columnHeaders; |
|
| 7524 | + $this->columnHeaders = $columnHeaders; |
|
| 7525 | 7525 | } |
| 7526 | 7526 | public function getColumnHeaders() |
| 7527 | 7527 | { |
| 7528 | - return $this->columnHeaders; |
|
| 7528 | + return $this->columnHeaders; |
|
| 7529 | 7529 | } |
| 7530 | 7530 | public function setContainsSampledData($containsSampledData) |
| 7531 | 7531 | { |
| 7532 | - $this->containsSampledData = $containsSampledData; |
|
| 7532 | + $this->containsSampledData = $containsSampledData; |
|
| 7533 | 7533 | } |
| 7534 | 7534 | public function getContainsSampledData() |
| 7535 | 7535 | { |
| 7536 | - return $this->containsSampledData; |
|
| 7536 | + return $this->containsSampledData; |
|
| 7537 | 7537 | } |
| 7538 | 7538 | public function setId($id) |
| 7539 | 7539 | { |
| 7540 | - $this->id = $id; |
|
| 7540 | + $this->id = $id; |
|
| 7541 | 7541 | } |
| 7542 | 7542 | public function getId() |
| 7543 | 7543 | { |
| 7544 | - return $this->id; |
|
| 7544 | + return $this->id; |
|
| 7545 | 7545 | } |
| 7546 | 7546 | public function setItemsPerPage($itemsPerPage) |
| 7547 | 7547 | { |
| 7548 | - $this->itemsPerPage = $itemsPerPage; |
|
| 7548 | + $this->itemsPerPage = $itemsPerPage; |
|
| 7549 | 7549 | } |
| 7550 | 7550 | public function getItemsPerPage() |
| 7551 | 7551 | { |
| 7552 | - return $this->itemsPerPage; |
|
| 7552 | + return $this->itemsPerPage; |
|
| 7553 | 7553 | } |
| 7554 | 7554 | public function setKind($kind) |
| 7555 | 7555 | { |
| 7556 | - $this->kind = $kind; |
|
| 7556 | + $this->kind = $kind; |
|
| 7557 | 7557 | } |
| 7558 | 7558 | public function getKind() |
| 7559 | 7559 | { |
| 7560 | - return $this->kind; |
|
| 7560 | + return $this->kind; |
|
| 7561 | 7561 | } |
| 7562 | 7562 | public function setNextLink($nextLink) |
| 7563 | 7563 | { |
| 7564 | - $this->nextLink = $nextLink; |
|
| 7564 | + $this->nextLink = $nextLink; |
|
| 7565 | 7565 | } |
| 7566 | 7566 | public function getNextLink() |
| 7567 | 7567 | { |
| 7568 | - return $this->nextLink; |
|
| 7568 | + return $this->nextLink; |
|
| 7569 | 7569 | } |
| 7570 | 7570 | public function setPreviousLink($previousLink) |
| 7571 | 7571 | { |
| 7572 | - $this->previousLink = $previousLink; |
|
| 7572 | + $this->previousLink = $previousLink; |
|
| 7573 | 7573 | } |
| 7574 | 7574 | public function getPreviousLink() |
| 7575 | 7575 | { |
| 7576 | - return $this->previousLink; |
|
| 7576 | + return $this->previousLink; |
|
| 7577 | 7577 | } |
| 7578 | 7578 | public function setProfileInfo(Google_Service_Analytics_McfDataProfileInfo $profileInfo) |
| 7579 | 7579 | { |
| 7580 | - $this->profileInfo = $profileInfo; |
|
| 7580 | + $this->profileInfo = $profileInfo; |
|
| 7581 | 7581 | } |
| 7582 | 7582 | public function getProfileInfo() |
| 7583 | 7583 | { |
| 7584 | - return $this->profileInfo; |
|
| 7584 | + return $this->profileInfo; |
|
| 7585 | 7585 | } |
| 7586 | 7586 | public function setQuery(Google_Service_Analytics_McfDataQuery $query) |
| 7587 | 7587 | { |
| 7588 | - $this->query = $query; |
|
| 7588 | + $this->query = $query; |
|
| 7589 | 7589 | } |
| 7590 | 7590 | public function getQuery() |
| 7591 | 7591 | { |
| 7592 | - return $this->query; |
|
| 7592 | + return $this->query; |
|
| 7593 | 7593 | } |
| 7594 | 7594 | public function setRows($rows) |
| 7595 | 7595 | { |
| 7596 | - $this->rows = $rows; |
|
| 7596 | + $this->rows = $rows; |
|
| 7597 | 7597 | } |
| 7598 | 7598 | public function getRows() |
| 7599 | 7599 | { |
| 7600 | - return $this->rows; |
|
| 7600 | + return $this->rows; |
|
| 7601 | 7601 | } |
| 7602 | 7602 | public function setSampleSize($sampleSize) |
| 7603 | 7603 | { |
| 7604 | - $this->sampleSize = $sampleSize; |
|
| 7604 | + $this->sampleSize = $sampleSize; |
|
| 7605 | 7605 | } |
| 7606 | 7606 | public function getSampleSize() |
| 7607 | 7607 | { |
| 7608 | - return $this->sampleSize; |
|
| 7608 | + return $this->sampleSize; |
|
| 7609 | 7609 | } |
| 7610 | 7610 | public function setSampleSpace($sampleSpace) |
| 7611 | 7611 | { |
| 7612 | - $this->sampleSpace = $sampleSpace; |
|
| 7612 | + $this->sampleSpace = $sampleSpace; |
|
| 7613 | 7613 | } |
| 7614 | 7614 | public function getSampleSpace() |
| 7615 | 7615 | { |
| 7616 | - return $this->sampleSpace; |
|
| 7616 | + return $this->sampleSpace; |
|
| 7617 | 7617 | } |
| 7618 | 7618 | public function setSelfLink($selfLink) |
| 7619 | 7619 | { |
| 7620 | - $this->selfLink = $selfLink; |
|
| 7620 | + $this->selfLink = $selfLink; |
|
| 7621 | 7621 | } |
| 7622 | 7622 | public function getSelfLink() |
| 7623 | 7623 | { |
| 7624 | - return $this->selfLink; |
|
| 7624 | + return $this->selfLink; |
|
| 7625 | 7625 | } |
| 7626 | 7626 | public function setTotalResults($totalResults) |
| 7627 | 7627 | { |
| 7628 | - $this->totalResults = $totalResults; |
|
| 7628 | + $this->totalResults = $totalResults; |
|
| 7629 | 7629 | } |
| 7630 | 7630 | public function getTotalResults() |
| 7631 | 7631 | { |
| 7632 | - return $this->totalResults; |
|
| 7632 | + return $this->totalResults; |
|
| 7633 | 7633 | } |
| 7634 | 7634 | public function setTotalsForAllResults($totalsForAllResults) |
| 7635 | 7635 | { |
| 7636 | - $this->totalsForAllResults = $totalsForAllResults; |
|
| 7636 | + $this->totalsForAllResults = $totalsForAllResults; |
|
| 7637 | 7637 | } |
| 7638 | 7638 | public function getTotalsForAllResults() |
| 7639 | 7639 | { |
| 7640 | - return $this->totalsForAllResults; |
|
| 7640 | + return $this->totalsForAllResults; |
|
| 7641 | 7641 | } |
| 7642 | 7642 | } |
| 7643 | 7643 | |
@@ -7652,27 +7652,27 @@ discard block |
||
| 7652 | 7652 | |
| 7653 | 7653 | public function setColumnType($columnType) |
| 7654 | 7654 | { |
| 7655 | - $this->columnType = $columnType; |
|
| 7655 | + $this->columnType = $columnType; |
|
| 7656 | 7656 | } |
| 7657 | 7657 | public function getColumnType() |
| 7658 | 7658 | { |
| 7659 | - return $this->columnType; |
|
| 7659 | + return $this->columnType; |
|
| 7660 | 7660 | } |
| 7661 | 7661 | public function setDataType($dataType) |
| 7662 | 7662 | { |
| 7663 | - $this->dataType = $dataType; |
|
| 7663 | + $this->dataType = $dataType; |
|
| 7664 | 7664 | } |
| 7665 | 7665 | public function getDataType() |
| 7666 | 7666 | { |
| 7667 | - return $this->dataType; |
|
| 7667 | + return $this->dataType; |
|
| 7668 | 7668 | } |
| 7669 | 7669 | public function setName($name) |
| 7670 | 7670 | { |
| 7671 | - $this->name = $name; |
|
| 7671 | + $this->name = $name; |
|
| 7672 | 7672 | } |
| 7673 | 7673 | public function getName() |
| 7674 | 7674 | { |
| 7675 | - return $this->name; |
|
| 7675 | + return $this->name; |
|
| 7676 | 7676 | } |
| 7677 | 7677 | } |
| 7678 | 7678 | |
@@ -7690,51 +7690,51 @@ discard block |
||
| 7690 | 7690 | |
| 7691 | 7691 | public function setAccountId($accountId) |
| 7692 | 7692 | { |
| 7693 | - $this->accountId = $accountId; |
|
| 7693 | + $this->accountId = $accountId; |
|
| 7694 | 7694 | } |
| 7695 | 7695 | public function getAccountId() |
| 7696 | 7696 | { |
| 7697 | - return $this->accountId; |
|
| 7697 | + return $this->accountId; |
|
| 7698 | 7698 | } |
| 7699 | 7699 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 7700 | 7700 | { |
| 7701 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 7701 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 7702 | 7702 | } |
| 7703 | 7703 | public function getInternalWebPropertyId() |
| 7704 | 7704 | { |
| 7705 | - return $this->internalWebPropertyId; |
|
| 7705 | + return $this->internalWebPropertyId; |
|
| 7706 | 7706 | } |
| 7707 | 7707 | public function setProfileId($profileId) |
| 7708 | 7708 | { |
| 7709 | - $this->profileId = $profileId; |
|
| 7709 | + $this->profileId = $profileId; |
|
| 7710 | 7710 | } |
| 7711 | 7711 | public function getProfileId() |
| 7712 | 7712 | { |
| 7713 | - return $this->profileId; |
|
| 7713 | + return $this->profileId; |
|
| 7714 | 7714 | } |
| 7715 | 7715 | public function setProfileName($profileName) |
| 7716 | 7716 | { |
| 7717 | - $this->profileName = $profileName; |
|
| 7717 | + $this->profileName = $profileName; |
|
| 7718 | 7718 | } |
| 7719 | 7719 | public function getProfileName() |
| 7720 | 7720 | { |
| 7721 | - return $this->profileName; |
|
| 7721 | + return $this->profileName; |
|
| 7722 | 7722 | } |
| 7723 | 7723 | public function setTableId($tableId) |
| 7724 | 7724 | { |
| 7725 | - $this->tableId = $tableId; |
|
| 7725 | + $this->tableId = $tableId; |
|
| 7726 | 7726 | } |
| 7727 | 7727 | public function getTableId() |
| 7728 | 7728 | { |
| 7729 | - return $this->tableId; |
|
| 7729 | + return $this->tableId; |
|
| 7730 | 7730 | } |
| 7731 | 7731 | public function setWebPropertyId($webPropertyId) |
| 7732 | 7732 | { |
| 7733 | - $this->webPropertyId = $webPropertyId; |
|
| 7733 | + $this->webPropertyId = $webPropertyId; |
|
| 7734 | 7734 | } |
| 7735 | 7735 | public function getWebPropertyId() |
| 7736 | 7736 | { |
| 7737 | - return $this->webPropertyId; |
|
| 7737 | + return $this->webPropertyId; |
|
| 7738 | 7738 | } |
| 7739 | 7739 | } |
| 7740 | 7740 | |
@@ -7742,10 +7742,10 @@ discard block |
||
| 7742 | 7742 | { |
| 7743 | 7743 | protected $collection_key = 'sort'; |
| 7744 | 7744 | protected $internal_gapi_mappings = array( |
| 7745 | - "endDate" => "end-date", |
|
| 7746 | - "maxResults" => "max-results", |
|
| 7747 | - "startDate" => "start-date", |
|
| 7748 | - "startIndex" => "start-index", |
|
| 7745 | + "endDate" => "end-date", |
|
| 7746 | + "maxResults" => "max-results", |
|
| 7747 | + "startDate" => "start-date", |
|
| 7748 | + "startIndex" => "start-index", |
|
| 7749 | 7749 | ); |
| 7750 | 7750 | public $dimensions; |
| 7751 | 7751 | public $endDate; |
@@ -7762,91 +7762,91 @@ discard block |
||
| 7762 | 7762 | |
| 7763 | 7763 | public function setDimensions($dimensions) |
| 7764 | 7764 | { |
| 7765 | - $this->dimensions = $dimensions; |
|
| 7765 | + $this->dimensions = $dimensions; |
|
| 7766 | 7766 | } |
| 7767 | 7767 | public function getDimensions() |
| 7768 | 7768 | { |
| 7769 | - return $this->dimensions; |
|
| 7769 | + return $this->dimensions; |
|
| 7770 | 7770 | } |
| 7771 | 7771 | public function setEndDate($endDate) |
| 7772 | 7772 | { |
| 7773 | - $this->endDate = $endDate; |
|
| 7773 | + $this->endDate = $endDate; |
|
| 7774 | 7774 | } |
| 7775 | 7775 | public function getEndDate() |
| 7776 | 7776 | { |
| 7777 | - return $this->endDate; |
|
| 7777 | + return $this->endDate; |
|
| 7778 | 7778 | } |
| 7779 | 7779 | public function setFilters($filters) |
| 7780 | 7780 | { |
| 7781 | - $this->filters = $filters; |
|
| 7781 | + $this->filters = $filters; |
|
| 7782 | 7782 | } |
| 7783 | 7783 | public function getFilters() |
| 7784 | 7784 | { |
| 7785 | - return $this->filters; |
|
| 7785 | + return $this->filters; |
|
| 7786 | 7786 | } |
| 7787 | 7787 | public function setIds($ids) |
| 7788 | 7788 | { |
| 7789 | - $this->ids = $ids; |
|
| 7789 | + $this->ids = $ids; |
|
| 7790 | 7790 | } |
| 7791 | 7791 | public function getIds() |
| 7792 | 7792 | { |
| 7793 | - return $this->ids; |
|
| 7793 | + return $this->ids; |
|
| 7794 | 7794 | } |
| 7795 | 7795 | public function setMaxResults($maxResults) |
| 7796 | 7796 | { |
| 7797 | - $this->maxResults = $maxResults; |
|
| 7797 | + $this->maxResults = $maxResults; |
|
| 7798 | 7798 | } |
| 7799 | 7799 | public function getMaxResults() |
| 7800 | 7800 | { |
| 7801 | - return $this->maxResults; |
|
| 7801 | + return $this->maxResults; |
|
| 7802 | 7802 | } |
| 7803 | 7803 | public function setMetrics($metrics) |
| 7804 | 7804 | { |
| 7805 | - $this->metrics = $metrics; |
|
| 7805 | + $this->metrics = $metrics; |
|
| 7806 | 7806 | } |
| 7807 | 7807 | public function getMetrics() |
| 7808 | 7808 | { |
| 7809 | - return $this->metrics; |
|
| 7809 | + return $this->metrics; |
|
| 7810 | 7810 | } |
| 7811 | 7811 | public function setSamplingLevel($samplingLevel) |
| 7812 | 7812 | { |
| 7813 | - $this->samplingLevel = $samplingLevel; |
|
| 7813 | + $this->samplingLevel = $samplingLevel; |
|
| 7814 | 7814 | } |
| 7815 | 7815 | public function getSamplingLevel() |
| 7816 | 7816 | { |
| 7817 | - return $this->samplingLevel; |
|
| 7817 | + return $this->samplingLevel; |
|
| 7818 | 7818 | } |
| 7819 | 7819 | public function setSegment($segment) |
| 7820 | 7820 | { |
| 7821 | - $this->segment = $segment; |
|
| 7821 | + $this->segment = $segment; |
|
| 7822 | 7822 | } |
| 7823 | 7823 | public function getSegment() |
| 7824 | 7824 | { |
| 7825 | - return $this->segment; |
|
| 7825 | + return $this->segment; |
|
| 7826 | 7826 | } |
| 7827 | 7827 | public function setSort($sort) |
| 7828 | 7828 | { |
| 7829 | - $this->sort = $sort; |
|
| 7829 | + $this->sort = $sort; |
|
| 7830 | 7830 | } |
| 7831 | 7831 | public function getSort() |
| 7832 | 7832 | { |
| 7833 | - return $this->sort; |
|
| 7833 | + return $this->sort; |
|
| 7834 | 7834 | } |
| 7835 | 7835 | public function setStartDate($startDate) |
| 7836 | 7836 | { |
| 7837 | - $this->startDate = $startDate; |
|
| 7837 | + $this->startDate = $startDate; |
|
| 7838 | 7838 | } |
| 7839 | 7839 | public function getStartDate() |
| 7840 | 7840 | { |
| 7841 | - return $this->startDate; |
|
| 7841 | + return $this->startDate; |
|
| 7842 | 7842 | } |
| 7843 | 7843 | public function setStartIndex($startIndex) |
| 7844 | 7844 | { |
| 7845 | - $this->startIndex = $startIndex; |
|
| 7845 | + $this->startIndex = $startIndex; |
|
| 7846 | 7846 | } |
| 7847 | 7847 | public function getStartIndex() |
| 7848 | 7848 | { |
| 7849 | - return $this->startIndex; |
|
| 7849 | + return $this->startIndex; |
|
| 7850 | 7850 | } |
| 7851 | 7851 | } |
| 7852 | 7852 | |
@@ -7862,19 +7862,19 @@ discard block |
||
| 7862 | 7862 | |
| 7863 | 7863 | public function setConversionPathValue($conversionPathValue) |
| 7864 | 7864 | { |
| 7865 | - $this->conversionPathValue = $conversionPathValue; |
|
| 7865 | + $this->conversionPathValue = $conversionPathValue; |
|
| 7866 | 7866 | } |
| 7867 | 7867 | public function getConversionPathValue() |
| 7868 | 7868 | { |
| 7869 | - return $this->conversionPathValue; |
|
| 7869 | + return $this->conversionPathValue; |
|
| 7870 | 7870 | } |
| 7871 | 7871 | public function setPrimitiveValue($primitiveValue) |
| 7872 | 7872 | { |
| 7873 | - $this->primitiveValue = $primitiveValue; |
|
| 7873 | + $this->primitiveValue = $primitiveValue; |
|
| 7874 | 7874 | } |
| 7875 | 7875 | public function getPrimitiveValue() |
| 7876 | 7876 | { |
| 7877 | - return $this->primitiveValue; |
|
| 7877 | + return $this->primitiveValue; |
|
| 7878 | 7878 | } |
| 7879 | 7879 | } |
| 7880 | 7880 | |
@@ -7888,19 +7888,19 @@ discard block |
||
| 7888 | 7888 | |
| 7889 | 7889 | public function setInteractionType($interactionType) |
| 7890 | 7890 | { |
| 7891 | - $this->interactionType = $interactionType; |
|
| 7891 | + $this->interactionType = $interactionType; |
|
| 7892 | 7892 | } |
| 7893 | 7893 | public function getInteractionType() |
| 7894 | 7894 | { |
| 7895 | - return $this->interactionType; |
|
| 7895 | + return $this->interactionType; |
|
| 7896 | 7896 | } |
| 7897 | 7897 | public function setNodeValue($nodeValue) |
| 7898 | 7898 | { |
| 7899 | - $this->nodeValue = $nodeValue; |
|
| 7899 | + $this->nodeValue = $nodeValue; |
|
| 7900 | 7900 | } |
| 7901 | 7901 | public function getNodeValue() |
| 7902 | 7902 | { |
| 7903 | - return $this->nodeValue; |
|
| 7903 | + return $this->nodeValue; |
|
| 7904 | 7904 | } |
| 7905 | 7905 | } |
| 7906 | 7906 | |
@@ -7943,195 +7943,195 @@ discard block |
||
| 7943 | 7943 | |
| 7944 | 7944 | public function setAccountId($accountId) |
| 7945 | 7945 | { |
| 7946 | - $this->accountId = $accountId; |
|
| 7946 | + $this->accountId = $accountId; |
|
| 7947 | 7947 | } |
| 7948 | 7948 | public function getAccountId() |
| 7949 | 7949 | { |
| 7950 | - return $this->accountId; |
|
| 7950 | + return $this->accountId; |
|
| 7951 | 7951 | } |
| 7952 | 7952 | public function setChildLink(Google_Service_Analytics_ProfileChildLink $childLink) |
| 7953 | 7953 | { |
| 7954 | - $this->childLink = $childLink; |
|
| 7954 | + $this->childLink = $childLink; |
|
| 7955 | 7955 | } |
| 7956 | 7956 | public function getChildLink() |
| 7957 | 7957 | { |
| 7958 | - return $this->childLink; |
|
| 7958 | + return $this->childLink; |
|
| 7959 | 7959 | } |
| 7960 | 7960 | public function setCreated($created) |
| 7961 | 7961 | { |
| 7962 | - $this->created = $created; |
|
| 7962 | + $this->created = $created; |
|
| 7963 | 7963 | } |
| 7964 | 7964 | public function getCreated() |
| 7965 | 7965 | { |
| 7966 | - return $this->created; |
|
| 7966 | + return $this->created; |
|
| 7967 | 7967 | } |
| 7968 | 7968 | public function setCurrency($currency) |
| 7969 | 7969 | { |
| 7970 | - $this->currency = $currency; |
|
| 7970 | + $this->currency = $currency; |
|
| 7971 | 7971 | } |
| 7972 | 7972 | public function getCurrency() |
| 7973 | 7973 | { |
| 7974 | - return $this->currency; |
|
| 7974 | + return $this->currency; |
|
| 7975 | 7975 | } |
| 7976 | 7976 | public function setDefaultPage($defaultPage) |
| 7977 | 7977 | { |
| 7978 | - $this->defaultPage = $defaultPage; |
|
| 7978 | + $this->defaultPage = $defaultPage; |
|
| 7979 | 7979 | } |
| 7980 | 7980 | public function getDefaultPage() |
| 7981 | 7981 | { |
| 7982 | - return $this->defaultPage; |
|
| 7982 | + return $this->defaultPage; |
|
| 7983 | 7983 | } |
| 7984 | 7984 | public function setECommerceTracking($eCommerceTracking) |
| 7985 | 7985 | { |
| 7986 | - $this->eCommerceTracking = $eCommerceTracking; |
|
| 7986 | + $this->eCommerceTracking = $eCommerceTracking; |
|
| 7987 | 7987 | } |
| 7988 | 7988 | public function getECommerceTracking() |
| 7989 | 7989 | { |
| 7990 | - return $this->eCommerceTracking; |
|
| 7990 | + return $this->eCommerceTracking; |
|
| 7991 | 7991 | } |
| 7992 | 7992 | public function setEnhancedECommerceTracking($enhancedECommerceTracking) |
| 7993 | 7993 | { |
| 7994 | - $this->enhancedECommerceTracking = $enhancedECommerceTracking; |
|
| 7994 | + $this->enhancedECommerceTracking = $enhancedECommerceTracking; |
|
| 7995 | 7995 | } |
| 7996 | 7996 | public function getEnhancedECommerceTracking() |
| 7997 | 7997 | { |
| 7998 | - return $this->enhancedECommerceTracking; |
|
| 7998 | + return $this->enhancedECommerceTracking; |
|
| 7999 | 7999 | } |
| 8000 | 8000 | public function setExcludeQueryParameters($excludeQueryParameters) |
| 8001 | 8001 | { |
| 8002 | - $this->excludeQueryParameters = $excludeQueryParameters; |
|
| 8002 | + $this->excludeQueryParameters = $excludeQueryParameters; |
|
| 8003 | 8003 | } |
| 8004 | 8004 | public function getExcludeQueryParameters() |
| 8005 | 8005 | { |
| 8006 | - return $this->excludeQueryParameters; |
|
| 8006 | + return $this->excludeQueryParameters; |
|
| 8007 | 8007 | } |
| 8008 | 8008 | public function setId($id) |
| 8009 | 8009 | { |
| 8010 | - $this->id = $id; |
|
| 8010 | + $this->id = $id; |
|
| 8011 | 8011 | } |
| 8012 | 8012 | public function getId() |
| 8013 | 8013 | { |
| 8014 | - return $this->id; |
|
| 8014 | + return $this->id; |
|
| 8015 | 8015 | } |
| 8016 | 8016 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 8017 | 8017 | { |
| 8018 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8018 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8019 | 8019 | } |
| 8020 | 8020 | public function getInternalWebPropertyId() |
| 8021 | 8021 | { |
| 8022 | - return $this->internalWebPropertyId; |
|
| 8022 | + return $this->internalWebPropertyId; |
|
| 8023 | 8023 | } |
| 8024 | 8024 | public function setKind($kind) |
| 8025 | 8025 | { |
| 8026 | - $this->kind = $kind; |
|
| 8026 | + $this->kind = $kind; |
|
| 8027 | 8027 | } |
| 8028 | 8028 | public function getKind() |
| 8029 | 8029 | { |
| 8030 | - return $this->kind; |
|
| 8030 | + return $this->kind; |
|
| 8031 | 8031 | } |
| 8032 | 8032 | public function setName($name) |
| 8033 | 8033 | { |
| 8034 | - $this->name = $name; |
|
| 8034 | + $this->name = $name; |
|
| 8035 | 8035 | } |
| 8036 | 8036 | public function getName() |
| 8037 | 8037 | { |
| 8038 | - return $this->name; |
|
| 8038 | + return $this->name; |
|
| 8039 | 8039 | } |
| 8040 | 8040 | public function setParentLink(Google_Service_Analytics_ProfileParentLink $parentLink) |
| 8041 | 8041 | { |
| 8042 | - $this->parentLink = $parentLink; |
|
| 8042 | + $this->parentLink = $parentLink; |
|
| 8043 | 8043 | } |
| 8044 | 8044 | public function getParentLink() |
| 8045 | 8045 | { |
| 8046 | - return $this->parentLink; |
|
| 8046 | + return $this->parentLink; |
|
| 8047 | 8047 | } |
| 8048 | 8048 | public function setPermissions(Google_Service_Analytics_ProfilePermissions $permissions) |
| 8049 | 8049 | { |
| 8050 | - $this->permissions = $permissions; |
|
| 8050 | + $this->permissions = $permissions; |
|
| 8051 | 8051 | } |
| 8052 | 8052 | public function getPermissions() |
| 8053 | 8053 | { |
| 8054 | - return $this->permissions; |
|
| 8054 | + return $this->permissions; |
|
| 8055 | 8055 | } |
| 8056 | 8056 | public function setSelfLink($selfLink) |
| 8057 | 8057 | { |
| 8058 | - $this->selfLink = $selfLink; |
|
| 8058 | + $this->selfLink = $selfLink; |
|
| 8059 | 8059 | } |
| 8060 | 8060 | public function getSelfLink() |
| 8061 | 8061 | { |
| 8062 | - return $this->selfLink; |
|
| 8062 | + return $this->selfLink; |
|
| 8063 | 8063 | } |
| 8064 | 8064 | public function setSiteSearchCategoryParameters($siteSearchCategoryParameters) |
| 8065 | 8065 | { |
| 8066 | - $this->siteSearchCategoryParameters = $siteSearchCategoryParameters; |
|
| 8066 | + $this->siteSearchCategoryParameters = $siteSearchCategoryParameters; |
|
| 8067 | 8067 | } |
| 8068 | 8068 | public function getSiteSearchCategoryParameters() |
| 8069 | 8069 | { |
| 8070 | - return $this->siteSearchCategoryParameters; |
|
| 8070 | + return $this->siteSearchCategoryParameters; |
|
| 8071 | 8071 | } |
| 8072 | 8072 | public function setSiteSearchQueryParameters($siteSearchQueryParameters) |
| 8073 | 8073 | { |
| 8074 | - $this->siteSearchQueryParameters = $siteSearchQueryParameters; |
|
| 8074 | + $this->siteSearchQueryParameters = $siteSearchQueryParameters; |
|
| 8075 | 8075 | } |
| 8076 | 8076 | public function getSiteSearchQueryParameters() |
| 8077 | 8077 | { |
| 8078 | - return $this->siteSearchQueryParameters; |
|
| 8078 | + return $this->siteSearchQueryParameters; |
|
| 8079 | 8079 | } |
| 8080 | 8080 | public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters) |
| 8081 | 8081 | { |
| 8082 | - $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters; |
|
| 8082 | + $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters; |
|
| 8083 | 8083 | } |
| 8084 | 8084 | public function getStripSiteSearchCategoryParameters() |
| 8085 | 8085 | { |
| 8086 | - return $this->stripSiteSearchCategoryParameters; |
|
| 8086 | + return $this->stripSiteSearchCategoryParameters; |
|
| 8087 | 8087 | } |
| 8088 | 8088 | public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters) |
| 8089 | 8089 | { |
| 8090 | - $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters; |
|
| 8090 | + $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters; |
|
| 8091 | 8091 | } |
| 8092 | 8092 | public function getStripSiteSearchQueryParameters() |
| 8093 | 8093 | { |
| 8094 | - return $this->stripSiteSearchQueryParameters; |
|
| 8094 | + return $this->stripSiteSearchQueryParameters; |
|
| 8095 | 8095 | } |
| 8096 | 8096 | public function setTimezone($timezone) |
| 8097 | 8097 | { |
| 8098 | - $this->timezone = $timezone; |
|
| 8098 | + $this->timezone = $timezone; |
|
| 8099 | 8099 | } |
| 8100 | 8100 | public function getTimezone() |
| 8101 | 8101 | { |
| 8102 | - return $this->timezone; |
|
| 8102 | + return $this->timezone; |
|
| 8103 | 8103 | } |
| 8104 | 8104 | public function setType($type) |
| 8105 | 8105 | { |
| 8106 | - $this->type = $type; |
|
| 8106 | + $this->type = $type; |
|
| 8107 | 8107 | } |
| 8108 | 8108 | public function getType() |
| 8109 | 8109 | { |
| 8110 | - return $this->type; |
|
| 8110 | + return $this->type; |
|
| 8111 | 8111 | } |
| 8112 | 8112 | public function setUpdated($updated) |
| 8113 | 8113 | { |
| 8114 | - $this->updated = $updated; |
|
| 8114 | + $this->updated = $updated; |
|
| 8115 | 8115 | } |
| 8116 | 8116 | public function getUpdated() |
| 8117 | 8117 | { |
| 8118 | - return $this->updated; |
|
| 8118 | + return $this->updated; |
|
| 8119 | 8119 | } |
| 8120 | 8120 | public function setWebPropertyId($webPropertyId) |
| 8121 | 8121 | { |
| 8122 | - $this->webPropertyId = $webPropertyId; |
|
| 8122 | + $this->webPropertyId = $webPropertyId; |
|
| 8123 | 8123 | } |
| 8124 | 8124 | public function getWebPropertyId() |
| 8125 | 8125 | { |
| 8126 | - return $this->webPropertyId; |
|
| 8126 | + return $this->webPropertyId; |
|
| 8127 | 8127 | } |
| 8128 | 8128 | public function setWebsiteUrl($websiteUrl) |
| 8129 | 8129 | { |
| 8130 | - $this->websiteUrl = $websiteUrl; |
|
| 8130 | + $this->websiteUrl = $websiteUrl; |
|
| 8131 | 8131 | } |
| 8132 | 8132 | public function getWebsiteUrl() |
| 8133 | 8133 | { |
| 8134 | - return $this->websiteUrl; |
|
| 8134 | + return $this->websiteUrl; |
|
| 8135 | 8135 | } |
| 8136 | 8136 | } |
| 8137 | 8137 | |
@@ -8145,19 +8145,19 @@ discard block |
||
| 8145 | 8145 | |
| 8146 | 8146 | public function setHref($href) |
| 8147 | 8147 | { |
| 8148 | - $this->href = $href; |
|
| 8148 | + $this->href = $href; |
|
| 8149 | 8149 | } |
| 8150 | 8150 | public function getHref() |
| 8151 | 8151 | { |
| 8152 | - return $this->href; |
|
| 8152 | + return $this->href; |
|
| 8153 | 8153 | } |
| 8154 | 8154 | public function setType($type) |
| 8155 | 8155 | { |
| 8156 | - $this->type = $type; |
|
| 8156 | + $this->type = $type; |
|
| 8157 | 8157 | } |
| 8158 | 8158 | public function getType() |
| 8159 | 8159 | { |
| 8160 | - return $this->type; |
|
| 8160 | + return $this->type; |
|
| 8161 | 8161 | } |
| 8162 | 8162 | } |
| 8163 | 8163 | |
@@ -8177,51 +8177,51 @@ discard block |
||
| 8177 | 8177 | |
| 8178 | 8178 | public function setFilterRef(Google_Service_Analytics_FilterRef $filterRef) |
| 8179 | 8179 | { |
| 8180 | - $this->filterRef = $filterRef; |
|
| 8180 | + $this->filterRef = $filterRef; |
|
| 8181 | 8181 | } |
| 8182 | 8182 | public function getFilterRef() |
| 8183 | 8183 | { |
| 8184 | - return $this->filterRef; |
|
| 8184 | + return $this->filterRef; |
|
| 8185 | 8185 | } |
| 8186 | 8186 | public function setId($id) |
| 8187 | 8187 | { |
| 8188 | - $this->id = $id; |
|
| 8188 | + $this->id = $id; |
|
| 8189 | 8189 | } |
| 8190 | 8190 | public function getId() |
| 8191 | 8191 | { |
| 8192 | - return $this->id; |
|
| 8192 | + return $this->id; |
|
| 8193 | 8193 | } |
| 8194 | 8194 | public function setKind($kind) |
| 8195 | 8195 | { |
| 8196 | - $this->kind = $kind; |
|
| 8196 | + $this->kind = $kind; |
|
| 8197 | 8197 | } |
| 8198 | 8198 | public function getKind() |
| 8199 | 8199 | { |
| 8200 | - return $this->kind; |
|
| 8200 | + return $this->kind; |
|
| 8201 | 8201 | } |
| 8202 | 8202 | public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef) |
| 8203 | 8203 | { |
| 8204 | - $this->profileRef = $profileRef; |
|
| 8204 | + $this->profileRef = $profileRef; |
|
| 8205 | 8205 | } |
| 8206 | 8206 | public function getProfileRef() |
| 8207 | 8207 | { |
| 8208 | - return $this->profileRef; |
|
| 8208 | + return $this->profileRef; |
|
| 8209 | 8209 | } |
| 8210 | 8210 | public function setRank($rank) |
| 8211 | 8211 | { |
| 8212 | - $this->rank = $rank; |
|
| 8212 | + $this->rank = $rank; |
|
| 8213 | 8213 | } |
| 8214 | 8214 | public function getRank() |
| 8215 | 8215 | { |
| 8216 | - return $this->rank; |
|
| 8216 | + return $this->rank; |
|
| 8217 | 8217 | } |
| 8218 | 8218 | public function setSelfLink($selfLink) |
| 8219 | 8219 | { |
| 8220 | - $this->selfLink = $selfLink; |
|
| 8220 | + $this->selfLink = $selfLink; |
|
| 8221 | 8221 | } |
| 8222 | 8222 | public function getSelfLink() |
| 8223 | 8223 | { |
| 8224 | - return $this->selfLink; |
|
| 8224 | + return $this->selfLink; |
|
| 8225 | 8225 | } |
| 8226 | 8226 | } |
| 8227 | 8227 | |
@@ -8243,67 +8243,67 @@ discard block |
||
| 8243 | 8243 | |
| 8244 | 8244 | public function setItems($items) |
| 8245 | 8245 | { |
| 8246 | - $this->items = $items; |
|
| 8246 | + $this->items = $items; |
|
| 8247 | 8247 | } |
| 8248 | 8248 | public function getItems() |
| 8249 | 8249 | { |
| 8250 | - return $this->items; |
|
| 8250 | + return $this->items; |
|
| 8251 | 8251 | } |
| 8252 | 8252 | public function setItemsPerPage($itemsPerPage) |
| 8253 | 8253 | { |
| 8254 | - $this->itemsPerPage = $itemsPerPage; |
|
| 8254 | + $this->itemsPerPage = $itemsPerPage; |
|
| 8255 | 8255 | } |
| 8256 | 8256 | public function getItemsPerPage() |
| 8257 | 8257 | { |
| 8258 | - return $this->itemsPerPage; |
|
| 8258 | + return $this->itemsPerPage; |
|
| 8259 | 8259 | } |
| 8260 | 8260 | public function setKind($kind) |
| 8261 | 8261 | { |
| 8262 | - $this->kind = $kind; |
|
| 8262 | + $this->kind = $kind; |
|
| 8263 | 8263 | } |
| 8264 | 8264 | public function getKind() |
| 8265 | 8265 | { |
| 8266 | - return $this->kind; |
|
| 8266 | + return $this->kind; |
|
| 8267 | 8267 | } |
| 8268 | 8268 | public function setNextLink($nextLink) |
| 8269 | 8269 | { |
| 8270 | - $this->nextLink = $nextLink; |
|
| 8270 | + $this->nextLink = $nextLink; |
|
| 8271 | 8271 | } |
| 8272 | 8272 | public function getNextLink() |
| 8273 | 8273 | { |
| 8274 | - return $this->nextLink; |
|
| 8274 | + return $this->nextLink; |
|
| 8275 | 8275 | } |
| 8276 | 8276 | public function setPreviousLink($previousLink) |
| 8277 | 8277 | { |
| 8278 | - $this->previousLink = $previousLink; |
|
| 8278 | + $this->previousLink = $previousLink; |
|
| 8279 | 8279 | } |
| 8280 | 8280 | public function getPreviousLink() |
| 8281 | 8281 | { |
| 8282 | - return $this->previousLink; |
|
| 8282 | + return $this->previousLink; |
|
| 8283 | 8283 | } |
| 8284 | 8284 | public function setStartIndex($startIndex) |
| 8285 | 8285 | { |
| 8286 | - $this->startIndex = $startIndex; |
|
| 8286 | + $this->startIndex = $startIndex; |
|
| 8287 | 8287 | } |
| 8288 | 8288 | public function getStartIndex() |
| 8289 | 8289 | { |
| 8290 | - return $this->startIndex; |
|
| 8290 | + return $this->startIndex; |
|
| 8291 | 8291 | } |
| 8292 | 8292 | public function setTotalResults($totalResults) |
| 8293 | 8293 | { |
| 8294 | - $this->totalResults = $totalResults; |
|
| 8294 | + $this->totalResults = $totalResults; |
|
| 8295 | 8295 | } |
| 8296 | 8296 | public function getTotalResults() |
| 8297 | 8297 | { |
| 8298 | - return $this->totalResults; |
|
| 8298 | + return $this->totalResults; |
|
| 8299 | 8299 | } |
| 8300 | 8300 | public function setUsername($username) |
| 8301 | 8301 | { |
| 8302 | - $this->username = $username; |
|
| 8302 | + $this->username = $username; |
|
| 8303 | 8303 | } |
| 8304 | 8304 | public function getUsername() |
| 8305 | 8305 | { |
| 8306 | - return $this->username; |
|
| 8306 | + return $this->username; |
|
| 8307 | 8307 | } |
| 8308 | 8308 | } |
| 8309 | 8309 | |
@@ -8317,19 +8317,19 @@ discard block |
||
| 8317 | 8317 | |
| 8318 | 8318 | public function setHref($href) |
| 8319 | 8319 | { |
| 8320 | - $this->href = $href; |
|
| 8320 | + $this->href = $href; |
|
| 8321 | 8321 | } |
| 8322 | 8322 | public function getHref() |
| 8323 | 8323 | { |
| 8324 | - return $this->href; |
|
| 8324 | + return $this->href; |
|
| 8325 | 8325 | } |
| 8326 | 8326 | public function setType($type) |
| 8327 | 8327 | { |
| 8328 | - $this->type = $type; |
|
| 8328 | + $this->type = $type; |
|
| 8329 | 8329 | } |
| 8330 | 8330 | public function getType() |
| 8331 | 8331 | { |
| 8332 | - return $this->type; |
|
| 8332 | + return $this->type; |
|
| 8333 | 8333 | } |
| 8334 | 8334 | } |
| 8335 | 8335 | |
@@ -8343,11 +8343,11 @@ discard block |
||
| 8343 | 8343 | |
| 8344 | 8344 | public function setEffective($effective) |
| 8345 | 8345 | { |
| 8346 | - $this->effective = $effective; |
|
| 8346 | + $this->effective = $effective; |
|
| 8347 | 8347 | } |
| 8348 | 8348 | public function getEffective() |
| 8349 | 8349 | { |
| 8350 | - return $this->effective; |
|
| 8350 | + return $this->effective; |
|
| 8351 | 8351 | } |
| 8352 | 8352 | } |
| 8353 | 8353 | |
@@ -8366,59 +8366,59 @@ discard block |
||
| 8366 | 8366 | |
| 8367 | 8367 | public function setAccountId($accountId) |
| 8368 | 8368 | { |
| 8369 | - $this->accountId = $accountId; |
|
| 8369 | + $this->accountId = $accountId; |
|
| 8370 | 8370 | } |
| 8371 | 8371 | public function getAccountId() |
| 8372 | 8372 | { |
| 8373 | - return $this->accountId; |
|
| 8373 | + return $this->accountId; |
|
| 8374 | 8374 | } |
| 8375 | 8375 | public function setHref($href) |
| 8376 | 8376 | { |
| 8377 | - $this->href = $href; |
|
| 8377 | + $this->href = $href; |
|
| 8378 | 8378 | } |
| 8379 | 8379 | public function getHref() |
| 8380 | 8380 | { |
| 8381 | - return $this->href; |
|
| 8381 | + return $this->href; |
|
| 8382 | 8382 | } |
| 8383 | 8383 | public function setId($id) |
| 8384 | 8384 | { |
| 8385 | - $this->id = $id; |
|
| 8385 | + $this->id = $id; |
|
| 8386 | 8386 | } |
| 8387 | 8387 | public function getId() |
| 8388 | 8388 | { |
| 8389 | - return $this->id; |
|
| 8389 | + return $this->id; |
|
| 8390 | 8390 | } |
| 8391 | 8391 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 8392 | 8392 | { |
| 8393 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8393 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8394 | 8394 | } |
| 8395 | 8395 | public function getInternalWebPropertyId() |
| 8396 | 8396 | { |
| 8397 | - return $this->internalWebPropertyId; |
|
| 8397 | + return $this->internalWebPropertyId; |
|
| 8398 | 8398 | } |
| 8399 | 8399 | public function setKind($kind) |
| 8400 | 8400 | { |
| 8401 | - $this->kind = $kind; |
|
| 8401 | + $this->kind = $kind; |
|
| 8402 | 8402 | } |
| 8403 | 8403 | public function getKind() |
| 8404 | 8404 | { |
| 8405 | - return $this->kind; |
|
| 8405 | + return $this->kind; |
|
| 8406 | 8406 | } |
| 8407 | 8407 | public function setName($name) |
| 8408 | 8408 | { |
| 8409 | - $this->name = $name; |
|
| 8409 | + $this->name = $name; |
|
| 8410 | 8410 | } |
| 8411 | 8411 | public function getName() |
| 8412 | 8412 | { |
| 8413 | - return $this->name; |
|
| 8413 | + return $this->name; |
|
| 8414 | 8414 | } |
| 8415 | 8415 | public function setWebPropertyId($webPropertyId) |
| 8416 | 8416 | { |
| 8417 | - $this->webPropertyId = $webPropertyId; |
|
| 8417 | + $this->webPropertyId = $webPropertyId; |
|
| 8418 | 8418 | } |
| 8419 | 8419 | public function getWebPropertyId() |
| 8420 | 8420 | { |
| 8421 | - return $this->webPropertyId; |
|
| 8421 | + return $this->webPropertyId; |
|
| 8422 | 8422 | } |
| 8423 | 8423 | } |
| 8424 | 8424 | |
@@ -8434,35 +8434,35 @@ discard block |
||
| 8434 | 8434 | |
| 8435 | 8435 | public function setId($id) |
| 8436 | 8436 | { |
| 8437 | - $this->id = $id; |
|
| 8437 | + $this->id = $id; |
|
| 8438 | 8438 | } |
| 8439 | 8439 | public function getId() |
| 8440 | 8440 | { |
| 8441 | - return $this->id; |
|
| 8441 | + return $this->id; |
|
| 8442 | 8442 | } |
| 8443 | 8443 | public function setKind($kind) |
| 8444 | 8444 | { |
| 8445 | - $this->kind = $kind; |
|
| 8445 | + $this->kind = $kind; |
|
| 8446 | 8446 | } |
| 8447 | 8447 | public function getKind() |
| 8448 | 8448 | { |
| 8449 | - return $this->kind; |
|
| 8449 | + return $this->kind; |
|
| 8450 | 8450 | } |
| 8451 | 8451 | public function setName($name) |
| 8452 | 8452 | { |
| 8453 | - $this->name = $name; |
|
| 8453 | + $this->name = $name; |
|
| 8454 | 8454 | } |
| 8455 | 8455 | public function getName() |
| 8456 | 8456 | { |
| 8457 | - return $this->name; |
|
| 8457 | + return $this->name; |
|
| 8458 | 8458 | } |
| 8459 | 8459 | public function setType($type) |
| 8460 | 8460 | { |
| 8461 | - $this->type = $type; |
|
| 8461 | + $this->type = $type; |
|
| 8462 | 8462 | } |
| 8463 | 8463 | public function getType() |
| 8464 | 8464 | { |
| 8465 | - return $this->type; |
|
| 8465 | + return $this->type; |
|
| 8466 | 8466 | } |
| 8467 | 8467 | } |
| 8468 | 8468 | |
@@ -8484,67 +8484,67 @@ discard block |
||
| 8484 | 8484 | |
| 8485 | 8485 | public function setItems($items) |
| 8486 | 8486 | { |
| 8487 | - $this->items = $items; |
|
| 8487 | + $this->items = $items; |
|
| 8488 | 8488 | } |
| 8489 | 8489 | public function getItems() |
| 8490 | 8490 | { |
| 8491 | - return $this->items; |
|
| 8491 | + return $this->items; |
|
| 8492 | 8492 | } |
| 8493 | 8493 | public function setItemsPerPage($itemsPerPage) |
| 8494 | 8494 | { |
| 8495 | - $this->itemsPerPage = $itemsPerPage; |
|
| 8495 | + $this->itemsPerPage = $itemsPerPage; |
|
| 8496 | 8496 | } |
| 8497 | 8497 | public function getItemsPerPage() |
| 8498 | 8498 | { |
| 8499 | - return $this->itemsPerPage; |
|
| 8499 | + return $this->itemsPerPage; |
|
| 8500 | 8500 | } |
| 8501 | 8501 | public function setKind($kind) |
| 8502 | 8502 | { |
| 8503 | - $this->kind = $kind; |
|
| 8503 | + $this->kind = $kind; |
|
| 8504 | 8504 | } |
| 8505 | 8505 | public function getKind() |
| 8506 | 8506 | { |
| 8507 | - return $this->kind; |
|
| 8507 | + return $this->kind; |
|
| 8508 | 8508 | } |
| 8509 | 8509 | public function setNextLink($nextLink) |
| 8510 | 8510 | { |
| 8511 | - $this->nextLink = $nextLink; |
|
| 8511 | + $this->nextLink = $nextLink; |
|
| 8512 | 8512 | } |
| 8513 | 8513 | public function getNextLink() |
| 8514 | 8514 | { |
| 8515 | - return $this->nextLink; |
|
| 8515 | + return $this->nextLink; |
|
| 8516 | 8516 | } |
| 8517 | 8517 | public function setPreviousLink($previousLink) |
| 8518 | 8518 | { |
| 8519 | - $this->previousLink = $previousLink; |
|
| 8519 | + $this->previousLink = $previousLink; |
|
| 8520 | 8520 | } |
| 8521 | 8521 | public function getPreviousLink() |
| 8522 | 8522 | { |
| 8523 | - return $this->previousLink; |
|
| 8523 | + return $this->previousLink; |
|
| 8524 | 8524 | } |
| 8525 | 8525 | public function setStartIndex($startIndex) |
| 8526 | 8526 | { |
| 8527 | - $this->startIndex = $startIndex; |
|
| 8527 | + $this->startIndex = $startIndex; |
|
| 8528 | 8528 | } |
| 8529 | 8529 | public function getStartIndex() |
| 8530 | 8530 | { |
| 8531 | - return $this->startIndex; |
|
| 8531 | + return $this->startIndex; |
|
| 8532 | 8532 | } |
| 8533 | 8533 | public function setTotalResults($totalResults) |
| 8534 | 8534 | { |
| 8535 | - $this->totalResults = $totalResults; |
|
| 8535 | + $this->totalResults = $totalResults; |
|
| 8536 | 8536 | } |
| 8537 | 8537 | public function getTotalResults() |
| 8538 | 8538 | { |
| 8539 | - return $this->totalResults; |
|
| 8539 | + return $this->totalResults; |
|
| 8540 | 8540 | } |
| 8541 | 8541 | public function setUsername($username) |
| 8542 | 8542 | { |
| 8543 | - $this->username = $username; |
|
| 8543 | + $this->username = $username; |
|
| 8544 | 8544 | } |
| 8545 | 8545 | public function getUsername() |
| 8546 | 8546 | { |
| 8547 | - return $this->username; |
|
| 8547 | + return $this->username; |
|
| 8548 | 8548 | } |
| 8549 | 8549 | } |
| 8550 | 8550 | |
@@ -8569,75 +8569,75 @@ discard block |
||
| 8569 | 8569 | |
| 8570 | 8570 | public function setColumnHeaders($columnHeaders) |
| 8571 | 8571 | { |
| 8572 | - $this->columnHeaders = $columnHeaders; |
|
| 8572 | + $this->columnHeaders = $columnHeaders; |
|
| 8573 | 8573 | } |
| 8574 | 8574 | public function getColumnHeaders() |
| 8575 | 8575 | { |
| 8576 | - return $this->columnHeaders; |
|
| 8576 | + return $this->columnHeaders; |
|
| 8577 | 8577 | } |
| 8578 | 8578 | public function setId($id) |
| 8579 | 8579 | { |
| 8580 | - $this->id = $id; |
|
| 8580 | + $this->id = $id; |
|
| 8581 | 8581 | } |
| 8582 | 8582 | public function getId() |
| 8583 | 8583 | { |
| 8584 | - return $this->id; |
|
| 8584 | + return $this->id; |
|
| 8585 | 8585 | } |
| 8586 | 8586 | public function setKind($kind) |
| 8587 | 8587 | { |
| 8588 | - $this->kind = $kind; |
|
| 8588 | + $this->kind = $kind; |
|
| 8589 | 8589 | } |
| 8590 | 8590 | public function getKind() |
| 8591 | 8591 | { |
| 8592 | - return $this->kind; |
|
| 8592 | + return $this->kind; |
|
| 8593 | 8593 | } |
| 8594 | 8594 | public function setProfileInfo(Google_Service_Analytics_RealtimeDataProfileInfo $profileInfo) |
| 8595 | 8595 | { |
| 8596 | - $this->profileInfo = $profileInfo; |
|
| 8596 | + $this->profileInfo = $profileInfo; |
|
| 8597 | 8597 | } |
| 8598 | 8598 | public function getProfileInfo() |
| 8599 | 8599 | { |
| 8600 | - return $this->profileInfo; |
|
| 8600 | + return $this->profileInfo; |
|
| 8601 | 8601 | } |
| 8602 | 8602 | public function setQuery(Google_Service_Analytics_RealtimeDataQuery $query) |
| 8603 | 8603 | { |
| 8604 | - $this->query = $query; |
|
| 8604 | + $this->query = $query; |
|
| 8605 | 8605 | } |
| 8606 | 8606 | public function getQuery() |
| 8607 | 8607 | { |
| 8608 | - return $this->query; |
|
| 8608 | + return $this->query; |
|
| 8609 | 8609 | } |
| 8610 | 8610 | public function setRows($rows) |
| 8611 | 8611 | { |
| 8612 | - $this->rows = $rows; |
|
| 8612 | + $this->rows = $rows; |
|
| 8613 | 8613 | } |
| 8614 | 8614 | public function getRows() |
| 8615 | 8615 | { |
| 8616 | - return $this->rows; |
|
| 8616 | + return $this->rows; |
|
| 8617 | 8617 | } |
| 8618 | 8618 | public function setSelfLink($selfLink) |
| 8619 | 8619 | { |
| 8620 | - $this->selfLink = $selfLink; |
|
| 8620 | + $this->selfLink = $selfLink; |
|
| 8621 | 8621 | } |
| 8622 | 8622 | public function getSelfLink() |
| 8623 | 8623 | { |
| 8624 | - return $this->selfLink; |
|
| 8624 | + return $this->selfLink; |
|
| 8625 | 8625 | } |
| 8626 | 8626 | public function setTotalResults($totalResults) |
| 8627 | 8627 | { |
| 8628 | - $this->totalResults = $totalResults; |
|
| 8628 | + $this->totalResults = $totalResults; |
|
| 8629 | 8629 | } |
| 8630 | 8630 | public function getTotalResults() |
| 8631 | 8631 | { |
| 8632 | - return $this->totalResults; |
|
| 8632 | + return $this->totalResults; |
|
| 8633 | 8633 | } |
| 8634 | 8634 | public function setTotalsForAllResults($totalsForAllResults) |
| 8635 | 8635 | { |
| 8636 | - $this->totalsForAllResults = $totalsForAllResults; |
|
| 8636 | + $this->totalsForAllResults = $totalsForAllResults; |
|
| 8637 | 8637 | } |
| 8638 | 8638 | public function getTotalsForAllResults() |
| 8639 | 8639 | { |
| 8640 | - return $this->totalsForAllResults; |
|
| 8640 | + return $this->totalsForAllResults; |
|
| 8641 | 8641 | } |
| 8642 | 8642 | } |
| 8643 | 8643 | |
@@ -8652,27 +8652,27 @@ discard block |
||
| 8652 | 8652 | |
| 8653 | 8653 | public function setColumnType($columnType) |
| 8654 | 8654 | { |
| 8655 | - $this->columnType = $columnType; |
|
| 8655 | + $this->columnType = $columnType; |
|
| 8656 | 8656 | } |
| 8657 | 8657 | public function getColumnType() |
| 8658 | 8658 | { |
| 8659 | - return $this->columnType; |
|
| 8659 | + return $this->columnType; |
|
| 8660 | 8660 | } |
| 8661 | 8661 | public function setDataType($dataType) |
| 8662 | 8662 | { |
| 8663 | - $this->dataType = $dataType; |
|
| 8663 | + $this->dataType = $dataType; |
|
| 8664 | 8664 | } |
| 8665 | 8665 | public function getDataType() |
| 8666 | 8666 | { |
| 8667 | - return $this->dataType; |
|
| 8667 | + return $this->dataType; |
|
| 8668 | 8668 | } |
| 8669 | 8669 | public function setName($name) |
| 8670 | 8670 | { |
| 8671 | - $this->name = $name; |
|
| 8671 | + $this->name = $name; |
|
| 8672 | 8672 | } |
| 8673 | 8673 | public function getName() |
| 8674 | 8674 | { |
| 8675 | - return $this->name; |
|
| 8675 | + return $this->name; |
|
| 8676 | 8676 | } |
| 8677 | 8677 | } |
| 8678 | 8678 | |
@@ -8690,51 +8690,51 @@ discard block |
||
| 8690 | 8690 | |
| 8691 | 8691 | public function setAccountId($accountId) |
| 8692 | 8692 | { |
| 8693 | - $this->accountId = $accountId; |
|
| 8693 | + $this->accountId = $accountId; |
|
| 8694 | 8694 | } |
| 8695 | 8695 | public function getAccountId() |
| 8696 | 8696 | { |
| 8697 | - return $this->accountId; |
|
| 8697 | + return $this->accountId; |
|
| 8698 | 8698 | } |
| 8699 | 8699 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 8700 | 8700 | { |
| 8701 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8701 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 8702 | 8702 | } |
| 8703 | 8703 | public function getInternalWebPropertyId() |
| 8704 | 8704 | { |
| 8705 | - return $this->internalWebPropertyId; |
|
| 8705 | + return $this->internalWebPropertyId; |
|
| 8706 | 8706 | } |
| 8707 | 8707 | public function setProfileId($profileId) |
| 8708 | 8708 | { |
| 8709 | - $this->profileId = $profileId; |
|
| 8709 | + $this->profileId = $profileId; |
|
| 8710 | 8710 | } |
| 8711 | 8711 | public function getProfileId() |
| 8712 | 8712 | { |
| 8713 | - return $this->profileId; |
|
| 8713 | + return $this->profileId; |
|
| 8714 | 8714 | } |
| 8715 | 8715 | public function setProfileName($profileName) |
| 8716 | 8716 | { |
| 8717 | - $this->profileName = $profileName; |
|
| 8717 | + $this->profileName = $profileName; |
|
| 8718 | 8718 | } |
| 8719 | 8719 | public function getProfileName() |
| 8720 | 8720 | { |
| 8721 | - return $this->profileName; |
|
| 8721 | + return $this->profileName; |
|
| 8722 | 8722 | } |
| 8723 | 8723 | public function setTableId($tableId) |
| 8724 | 8724 | { |
| 8725 | - $this->tableId = $tableId; |
|
| 8725 | + $this->tableId = $tableId; |
|
| 8726 | 8726 | } |
| 8727 | 8727 | public function getTableId() |
| 8728 | 8728 | { |
| 8729 | - return $this->tableId; |
|
| 8729 | + return $this->tableId; |
|
| 8730 | 8730 | } |
| 8731 | 8731 | public function setWebPropertyId($webPropertyId) |
| 8732 | 8732 | { |
| 8733 | - $this->webPropertyId = $webPropertyId; |
|
| 8733 | + $this->webPropertyId = $webPropertyId; |
|
| 8734 | 8734 | } |
| 8735 | 8735 | public function getWebPropertyId() |
| 8736 | 8736 | { |
| 8737 | - return $this->webPropertyId; |
|
| 8737 | + return $this->webPropertyId; |
|
| 8738 | 8738 | } |
| 8739 | 8739 | } |
| 8740 | 8740 | |
@@ -8742,7 +8742,7 @@ discard block |
||
| 8742 | 8742 | { |
| 8743 | 8743 | protected $collection_key = 'sort'; |
| 8744 | 8744 | protected $internal_gapi_mappings = array( |
| 8745 | - "maxResults" => "max-results", |
|
| 8745 | + "maxResults" => "max-results", |
|
| 8746 | 8746 | ); |
| 8747 | 8747 | public $dimensions; |
| 8748 | 8748 | public $filters; |
@@ -8754,51 +8754,51 @@ discard block |
||
| 8754 | 8754 | |
| 8755 | 8755 | public function setDimensions($dimensions) |
| 8756 | 8756 | { |
| 8757 | - $this->dimensions = $dimensions; |
|
| 8757 | + $this->dimensions = $dimensions; |
|
| 8758 | 8758 | } |
| 8759 | 8759 | public function getDimensions() |
| 8760 | 8760 | { |
| 8761 | - return $this->dimensions; |
|
| 8761 | + return $this->dimensions; |
|
| 8762 | 8762 | } |
| 8763 | 8763 | public function setFilters($filters) |
| 8764 | 8764 | { |
| 8765 | - $this->filters = $filters; |
|
| 8765 | + $this->filters = $filters; |
|
| 8766 | 8766 | } |
| 8767 | 8767 | public function getFilters() |
| 8768 | 8768 | { |
| 8769 | - return $this->filters; |
|
| 8769 | + return $this->filters; |
|
| 8770 | 8770 | } |
| 8771 | 8771 | public function setIds($ids) |
| 8772 | 8772 | { |
| 8773 | - $this->ids = $ids; |
|
| 8773 | + $this->ids = $ids; |
|
| 8774 | 8774 | } |
| 8775 | 8775 | public function getIds() |
| 8776 | 8776 | { |
| 8777 | - return $this->ids; |
|
| 8777 | + return $this->ids; |
|
| 8778 | 8778 | } |
| 8779 | 8779 | public function setMaxResults($maxResults) |
| 8780 | 8780 | { |
| 8781 | - $this->maxResults = $maxResults; |
|
| 8781 | + $this->maxResults = $maxResults; |
|
| 8782 | 8782 | } |
| 8783 | 8783 | public function getMaxResults() |
| 8784 | 8784 | { |
| 8785 | - return $this->maxResults; |
|
| 8785 | + return $this->maxResults; |
|
| 8786 | 8786 | } |
| 8787 | 8787 | public function setMetrics($metrics) |
| 8788 | 8788 | { |
| 8789 | - $this->metrics = $metrics; |
|
| 8789 | + $this->metrics = $metrics; |
|
| 8790 | 8790 | } |
| 8791 | 8791 | public function getMetrics() |
| 8792 | 8792 | { |
| 8793 | - return $this->metrics; |
|
| 8793 | + return $this->metrics; |
|
| 8794 | 8794 | } |
| 8795 | 8795 | public function setSort($sort) |
| 8796 | 8796 | { |
| 8797 | - $this->sort = $sort; |
|
| 8797 | + $this->sort = $sort; |
|
| 8798 | 8798 | } |
| 8799 | 8799 | public function getSort() |
| 8800 | 8800 | { |
| 8801 | - return $this->sort; |
|
| 8801 | + return $this->sort; |
|
| 8802 | 8802 | } |
| 8803 | 8803 | } |
| 8804 | 8804 | |
@@ -8823,75 +8823,75 @@ discard block |
||
| 8823 | 8823 | |
| 8824 | 8824 | public function setCreated($created) |
| 8825 | 8825 | { |
| 8826 | - $this->created = $created; |
|
| 8826 | + $this->created = $created; |
|
| 8827 | 8827 | } |
| 8828 | 8828 | public function getCreated() |
| 8829 | 8829 | { |
| 8830 | - return $this->created; |
|
| 8830 | + return $this->created; |
|
| 8831 | 8831 | } |
| 8832 | 8832 | public function setDefinition($definition) |
| 8833 | 8833 | { |
| 8834 | - $this->definition = $definition; |
|
| 8834 | + $this->definition = $definition; |
|
| 8835 | 8835 | } |
| 8836 | 8836 | public function getDefinition() |
| 8837 | 8837 | { |
| 8838 | - return $this->definition; |
|
| 8838 | + return $this->definition; |
|
| 8839 | 8839 | } |
| 8840 | 8840 | public function setId($id) |
| 8841 | 8841 | { |
| 8842 | - $this->id = $id; |
|
| 8842 | + $this->id = $id; |
|
| 8843 | 8843 | } |
| 8844 | 8844 | public function getId() |
| 8845 | 8845 | { |
| 8846 | - return $this->id; |
|
| 8846 | + return $this->id; |
|
| 8847 | 8847 | } |
| 8848 | 8848 | public function setKind($kind) |
| 8849 | 8849 | { |
| 8850 | - $this->kind = $kind; |
|
| 8850 | + $this->kind = $kind; |
|
| 8851 | 8851 | } |
| 8852 | 8852 | public function getKind() |
| 8853 | 8853 | { |
| 8854 | - return $this->kind; |
|
| 8854 | + return $this->kind; |
|
| 8855 | 8855 | } |
| 8856 | 8856 | public function setName($name) |
| 8857 | 8857 | { |
| 8858 | - $this->name = $name; |
|
| 8858 | + $this->name = $name; |
|
| 8859 | 8859 | } |
| 8860 | 8860 | public function getName() |
| 8861 | 8861 | { |
| 8862 | - return $this->name; |
|
| 8862 | + return $this->name; |
|
| 8863 | 8863 | } |
| 8864 | 8864 | public function setSegmentId($segmentId) |
| 8865 | 8865 | { |
| 8866 | - $this->segmentId = $segmentId; |
|
| 8866 | + $this->segmentId = $segmentId; |
|
| 8867 | 8867 | } |
| 8868 | 8868 | public function getSegmentId() |
| 8869 | 8869 | { |
| 8870 | - return $this->segmentId; |
|
| 8870 | + return $this->segmentId; |
|
| 8871 | 8871 | } |
| 8872 | 8872 | public function setSelfLink($selfLink) |
| 8873 | 8873 | { |
| 8874 | - $this->selfLink = $selfLink; |
|
| 8874 | + $this->selfLink = $selfLink; |
|
| 8875 | 8875 | } |
| 8876 | 8876 | public function getSelfLink() |
| 8877 | 8877 | { |
| 8878 | - return $this->selfLink; |
|
| 8878 | + return $this->selfLink; |
|
| 8879 | 8879 | } |
| 8880 | 8880 | public function setType($type) |
| 8881 | 8881 | { |
| 8882 | - $this->type = $type; |
|
| 8882 | + $this->type = $type; |
|
| 8883 | 8883 | } |
| 8884 | 8884 | public function getType() |
| 8885 | 8885 | { |
| 8886 | - return $this->type; |
|
| 8886 | + return $this->type; |
|
| 8887 | 8887 | } |
| 8888 | 8888 | public function setUpdated($updated) |
| 8889 | 8889 | { |
| 8890 | - $this->updated = $updated; |
|
| 8890 | + $this->updated = $updated; |
|
| 8891 | 8891 | } |
| 8892 | 8892 | public function getUpdated() |
| 8893 | 8893 | { |
| 8894 | - return $this->updated; |
|
| 8894 | + return $this->updated; |
|
| 8895 | 8895 | } |
| 8896 | 8896 | } |
| 8897 | 8897 | |
@@ -8913,75 +8913,75 @@ discard block |
||
| 8913 | 8913 | |
| 8914 | 8914 | public function setItems($items) |
| 8915 | 8915 | { |
| 8916 | - $this->items = $items; |
|
| 8916 | + $this->items = $items; |
|
| 8917 | 8917 | } |
| 8918 | 8918 | public function getItems() |
| 8919 | 8919 | { |
| 8920 | - return $this->items; |
|
| 8920 | + return $this->items; |
|
| 8921 | 8921 | } |
| 8922 | 8922 | public function setItemsPerPage($itemsPerPage) |
| 8923 | 8923 | { |
| 8924 | - $this->itemsPerPage = $itemsPerPage; |
|
| 8924 | + $this->itemsPerPage = $itemsPerPage; |
|
| 8925 | 8925 | } |
| 8926 | 8926 | public function getItemsPerPage() |
| 8927 | 8927 | { |
| 8928 | - return $this->itemsPerPage; |
|
| 8928 | + return $this->itemsPerPage; |
|
| 8929 | 8929 | } |
| 8930 | 8930 | public function setKind($kind) |
| 8931 | 8931 | { |
| 8932 | - $this->kind = $kind; |
|
| 8932 | + $this->kind = $kind; |
|
| 8933 | 8933 | } |
| 8934 | 8934 | public function getKind() |
| 8935 | 8935 | { |
| 8936 | - return $this->kind; |
|
| 8936 | + return $this->kind; |
|
| 8937 | 8937 | } |
| 8938 | 8938 | public function setNextLink($nextLink) |
| 8939 | 8939 | { |
| 8940 | - $this->nextLink = $nextLink; |
|
| 8940 | + $this->nextLink = $nextLink; |
|
| 8941 | 8941 | } |
| 8942 | 8942 | public function getNextLink() |
| 8943 | 8943 | { |
| 8944 | - return $this->nextLink; |
|
| 8944 | + return $this->nextLink; |
|
| 8945 | 8945 | } |
| 8946 | 8946 | public function setPreviousLink($previousLink) |
| 8947 | 8947 | { |
| 8948 | - $this->previousLink = $previousLink; |
|
| 8948 | + $this->previousLink = $previousLink; |
|
| 8949 | 8949 | } |
| 8950 | 8950 | public function getPreviousLink() |
| 8951 | 8951 | { |
| 8952 | - return $this->previousLink; |
|
| 8952 | + return $this->previousLink; |
|
| 8953 | 8953 | } |
| 8954 | 8954 | public function setStartIndex($startIndex) |
| 8955 | 8955 | { |
| 8956 | - $this->startIndex = $startIndex; |
|
| 8956 | + $this->startIndex = $startIndex; |
|
| 8957 | 8957 | } |
| 8958 | 8958 | public function getStartIndex() |
| 8959 | 8959 | { |
| 8960 | - return $this->startIndex; |
|
| 8960 | + return $this->startIndex; |
|
| 8961 | 8961 | } |
| 8962 | 8962 | public function setTotalResults($totalResults) |
| 8963 | 8963 | { |
| 8964 | - $this->totalResults = $totalResults; |
|
| 8964 | + $this->totalResults = $totalResults; |
|
| 8965 | 8965 | } |
| 8966 | 8966 | public function getTotalResults() |
| 8967 | 8967 | { |
| 8968 | - return $this->totalResults; |
|
| 8968 | + return $this->totalResults; |
|
| 8969 | 8969 | } |
| 8970 | 8970 | public function setUsername($username) |
| 8971 | 8971 | { |
| 8972 | - $this->username = $username; |
|
| 8972 | + $this->username = $username; |
|
| 8973 | 8973 | } |
| 8974 | 8974 | public function getUsername() |
| 8975 | 8975 | { |
| 8976 | - return $this->username; |
|
| 8976 | + return $this->username; |
|
| 8977 | 8977 | } |
| 8978 | 8978 | } |
| 8979 | 8979 | |
| 8980 | 8980 | class Google_Service_Analytics_UnsampledReport extends Google_Model |
| 8981 | 8981 | { |
| 8982 | 8982 | protected $internal_gapi_mappings = array( |
| 8983 | - "endDate" => "end-date", |
|
| 8984 | - "startDate" => "start-date", |
|
| 8983 | + "endDate" => "end-date", |
|
| 8984 | + "startDate" => "start-date", |
|
| 8985 | 8985 | ); |
| 8986 | 8986 | public $accountId; |
| 8987 | 8987 | protected $cloudStorageDownloadDetailsType = 'Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails'; |
@@ -9008,155 +9008,155 @@ discard block |
||
| 9008 | 9008 | |
| 9009 | 9009 | public function setAccountId($accountId) |
| 9010 | 9010 | { |
| 9011 | - $this->accountId = $accountId; |
|
| 9011 | + $this->accountId = $accountId; |
|
| 9012 | 9012 | } |
| 9013 | 9013 | public function getAccountId() |
| 9014 | 9014 | { |
| 9015 | - return $this->accountId; |
|
| 9015 | + return $this->accountId; |
|
| 9016 | 9016 | } |
| 9017 | 9017 | public function setCloudStorageDownloadDetails(Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails $cloudStorageDownloadDetails) |
| 9018 | 9018 | { |
| 9019 | - $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails; |
|
| 9019 | + $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails; |
|
| 9020 | 9020 | } |
| 9021 | 9021 | public function getCloudStorageDownloadDetails() |
| 9022 | 9022 | { |
| 9023 | - return $this->cloudStorageDownloadDetails; |
|
| 9023 | + return $this->cloudStorageDownloadDetails; |
|
| 9024 | 9024 | } |
| 9025 | 9025 | public function setCreated($created) |
| 9026 | 9026 | { |
| 9027 | - $this->created = $created; |
|
| 9027 | + $this->created = $created; |
|
| 9028 | 9028 | } |
| 9029 | 9029 | public function getCreated() |
| 9030 | 9030 | { |
| 9031 | - return $this->created; |
|
| 9031 | + return $this->created; |
|
| 9032 | 9032 | } |
| 9033 | 9033 | public function setDimensions($dimensions) |
| 9034 | 9034 | { |
| 9035 | - $this->dimensions = $dimensions; |
|
| 9035 | + $this->dimensions = $dimensions; |
|
| 9036 | 9036 | } |
| 9037 | 9037 | public function getDimensions() |
| 9038 | 9038 | { |
| 9039 | - return $this->dimensions; |
|
| 9039 | + return $this->dimensions; |
|
| 9040 | 9040 | } |
| 9041 | 9041 | public function setDownloadType($downloadType) |
| 9042 | 9042 | { |
| 9043 | - $this->downloadType = $downloadType; |
|
| 9043 | + $this->downloadType = $downloadType; |
|
| 9044 | 9044 | } |
| 9045 | 9045 | public function getDownloadType() |
| 9046 | 9046 | { |
| 9047 | - return $this->downloadType; |
|
| 9047 | + return $this->downloadType; |
|
| 9048 | 9048 | } |
| 9049 | 9049 | public function setDriveDownloadDetails(Google_Service_Analytics_UnsampledReportDriveDownloadDetails $driveDownloadDetails) |
| 9050 | 9050 | { |
| 9051 | - $this->driveDownloadDetails = $driveDownloadDetails; |
|
| 9051 | + $this->driveDownloadDetails = $driveDownloadDetails; |
|
| 9052 | 9052 | } |
| 9053 | 9053 | public function getDriveDownloadDetails() |
| 9054 | 9054 | { |
| 9055 | - return $this->driveDownloadDetails; |
|
| 9055 | + return $this->driveDownloadDetails; |
|
| 9056 | 9056 | } |
| 9057 | 9057 | public function setEndDate($endDate) |
| 9058 | 9058 | { |
| 9059 | - $this->endDate = $endDate; |
|
| 9059 | + $this->endDate = $endDate; |
|
| 9060 | 9060 | } |
| 9061 | 9061 | public function getEndDate() |
| 9062 | 9062 | { |
| 9063 | - return $this->endDate; |
|
| 9063 | + return $this->endDate; |
|
| 9064 | 9064 | } |
| 9065 | 9065 | public function setFilters($filters) |
| 9066 | 9066 | { |
| 9067 | - $this->filters = $filters; |
|
| 9067 | + $this->filters = $filters; |
|
| 9068 | 9068 | } |
| 9069 | 9069 | public function getFilters() |
| 9070 | 9070 | { |
| 9071 | - return $this->filters; |
|
| 9071 | + return $this->filters; |
|
| 9072 | 9072 | } |
| 9073 | 9073 | public function setId($id) |
| 9074 | 9074 | { |
| 9075 | - $this->id = $id; |
|
| 9075 | + $this->id = $id; |
|
| 9076 | 9076 | } |
| 9077 | 9077 | public function getId() |
| 9078 | 9078 | { |
| 9079 | - return $this->id; |
|
| 9079 | + return $this->id; |
|
| 9080 | 9080 | } |
| 9081 | 9081 | public function setKind($kind) |
| 9082 | 9082 | { |
| 9083 | - $this->kind = $kind; |
|
| 9083 | + $this->kind = $kind; |
|
| 9084 | 9084 | } |
| 9085 | 9085 | public function getKind() |
| 9086 | 9086 | { |
| 9087 | - return $this->kind; |
|
| 9087 | + return $this->kind; |
|
| 9088 | 9088 | } |
| 9089 | 9089 | public function setMetrics($metrics) |
| 9090 | 9090 | { |
| 9091 | - $this->metrics = $metrics; |
|
| 9091 | + $this->metrics = $metrics; |
|
| 9092 | 9092 | } |
| 9093 | 9093 | public function getMetrics() |
| 9094 | 9094 | { |
| 9095 | - return $this->metrics; |
|
| 9095 | + return $this->metrics; |
|
| 9096 | 9096 | } |
| 9097 | 9097 | public function setProfileId($profileId) |
| 9098 | 9098 | { |
| 9099 | - $this->profileId = $profileId; |
|
| 9099 | + $this->profileId = $profileId; |
|
| 9100 | 9100 | } |
| 9101 | 9101 | public function getProfileId() |
| 9102 | 9102 | { |
| 9103 | - return $this->profileId; |
|
| 9103 | + return $this->profileId; |
|
| 9104 | 9104 | } |
| 9105 | 9105 | public function setSegment($segment) |
| 9106 | 9106 | { |
| 9107 | - $this->segment = $segment; |
|
| 9107 | + $this->segment = $segment; |
|
| 9108 | 9108 | } |
| 9109 | 9109 | public function getSegment() |
| 9110 | 9110 | { |
| 9111 | - return $this->segment; |
|
| 9111 | + return $this->segment; |
|
| 9112 | 9112 | } |
| 9113 | 9113 | public function setSelfLink($selfLink) |
| 9114 | 9114 | { |
| 9115 | - $this->selfLink = $selfLink; |
|
| 9115 | + $this->selfLink = $selfLink; |
|
| 9116 | 9116 | } |
| 9117 | 9117 | public function getSelfLink() |
| 9118 | 9118 | { |
| 9119 | - return $this->selfLink; |
|
| 9119 | + return $this->selfLink; |
|
| 9120 | 9120 | } |
| 9121 | 9121 | public function setStartDate($startDate) |
| 9122 | 9122 | { |
| 9123 | - $this->startDate = $startDate; |
|
| 9123 | + $this->startDate = $startDate; |
|
| 9124 | 9124 | } |
| 9125 | 9125 | public function getStartDate() |
| 9126 | 9126 | { |
| 9127 | - return $this->startDate; |
|
| 9127 | + return $this->startDate; |
|
| 9128 | 9128 | } |
| 9129 | 9129 | public function setStatus($status) |
| 9130 | 9130 | { |
| 9131 | - $this->status = $status; |
|
| 9131 | + $this->status = $status; |
|
| 9132 | 9132 | } |
| 9133 | 9133 | public function getStatus() |
| 9134 | 9134 | { |
| 9135 | - return $this->status; |
|
| 9135 | + return $this->status; |
|
| 9136 | 9136 | } |
| 9137 | 9137 | public function setTitle($title) |
| 9138 | 9138 | { |
| 9139 | - $this->title = $title; |
|
| 9139 | + $this->title = $title; |
|
| 9140 | 9140 | } |
| 9141 | 9141 | public function getTitle() |
| 9142 | 9142 | { |
| 9143 | - return $this->title; |
|
| 9143 | + return $this->title; |
|
| 9144 | 9144 | } |
| 9145 | 9145 | public function setUpdated($updated) |
| 9146 | 9146 | { |
| 9147 | - $this->updated = $updated; |
|
| 9147 | + $this->updated = $updated; |
|
| 9148 | 9148 | } |
| 9149 | 9149 | public function getUpdated() |
| 9150 | 9150 | { |
| 9151 | - return $this->updated; |
|
| 9151 | + return $this->updated; |
|
| 9152 | 9152 | } |
| 9153 | 9153 | public function setWebPropertyId($webPropertyId) |
| 9154 | 9154 | { |
| 9155 | - $this->webPropertyId = $webPropertyId; |
|
| 9155 | + $this->webPropertyId = $webPropertyId; |
|
| 9156 | 9156 | } |
| 9157 | 9157 | public function getWebPropertyId() |
| 9158 | 9158 | { |
| 9159 | - return $this->webPropertyId; |
|
| 9159 | + return $this->webPropertyId; |
|
| 9160 | 9160 | } |
| 9161 | 9161 | } |
| 9162 | 9162 | |
@@ -9170,19 +9170,19 @@ discard block |
||
| 9170 | 9170 | |
| 9171 | 9171 | public function setBucketId($bucketId) |
| 9172 | 9172 | { |
| 9173 | - $this->bucketId = $bucketId; |
|
| 9173 | + $this->bucketId = $bucketId; |
|
| 9174 | 9174 | } |
| 9175 | 9175 | public function getBucketId() |
| 9176 | 9176 | { |
| 9177 | - return $this->bucketId; |
|
| 9177 | + return $this->bucketId; |
|
| 9178 | 9178 | } |
| 9179 | 9179 | public function setObjectId($objectId) |
| 9180 | 9180 | { |
| 9181 | - $this->objectId = $objectId; |
|
| 9181 | + $this->objectId = $objectId; |
|
| 9182 | 9182 | } |
| 9183 | 9183 | public function getObjectId() |
| 9184 | 9184 | { |
| 9185 | - return $this->objectId; |
|
| 9185 | + return $this->objectId; |
|
| 9186 | 9186 | } |
| 9187 | 9187 | } |
| 9188 | 9188 | |
@@ -9195,11 +9195,11 @@ discard block |
||
| 9195 | 9195 | |
| 9196 | 9196 | public function setDocumentId($documentId) |
| 9197 | 9197 | { |
| 9198 | - $this->documentId = $documentId; |
|
| 9198 | + $this->documentId = $documentId; |
|
| 9199 | 9199 | } |
| 9200 | 9200 | public function getDocumentId() |
| 9201 | 9201 | { |
| 9202 | - return $this->documentId; |
|
| 9202 | + return $this->documentId; |
|
| 9203 | 9203 | } |
| 9204 | 9204 | } |
| 9205 | 9205 | |
@@ -9221,67 +9221,67 @@ discard block |
||
| 9221 | 9221 | |
| 9222 | 9222 | public function setItems($items) |
| 9223 | 9223 | { |
| 9224 | - $this->items = $items; |
|
| 9224 | + $this->items = $items; |
|
| 9225 | 9225 | } |
| 9226 | 9226 | public function getItems() |
| 9227 | 9227 | { |
| 9228 | - return $this->items; |
|
| 9228 | + return $this->items; |
|
| 9229 | 9229 | } |
| 9230 | 9230 | public function setItemsPerPage($itemsPerPage) |
| 9231 | 9231 | { |
| 9232 | - $this->itemsPerPage = $itemsPerPage; |
|
| 9232 | + $this->itemsPerPage = $itemsPerPage; |
|
| 9233 | 9233 | } |
| 9234 | 9234 | public function getItemsPerPage() |
| 9235 | 9235 | { |
| 9236 | - return $this->itemsPerPage; |
|
| 9236 | + return $this->itemsPerPage; |
|
| 9237 | 9237 | } |
| 9238 | 9238 | public function setKind($kind) |
| 9239 | 9239 | { |
| 9240 | - $this->kind = $kind; |
|
| 9240 | + $this->kind = $kind; |
|
| 9241 | 9241 | } |
| 9242 | 9242 | public function getKind() |
| 9243 | 9243 | { |
| 9244 | - return $this->kind; |
|
| 9244 | + return $this->kind; |
|
| 9245 | 9245 | } |
| 9246 | 9246 | public function setNextLink($nextLink) |
| 9247 | 9247 | { |
| 9248 | - $this->nextLink = $nextLink; |
|
| 9248 | + $this->nextLink = $nextLink; |
|
| 9249 | 9249 | } |
| 9250 | 9250 | public function getNextLink() |
| 9251 | 9251 | { |
| 9252 | - return $this->nextLink; |
|
| 9252 | + return $this->nextLink; |
|
| 9253 | 9253 | } |
| 9254 | 9254 | public function setPreviousLink($previousLink) |
| 9255 | 9255 | { |
| 9256 | - $this->previousLink = $previousLink; |
|
| 9256 | + $this->previousLink = $previousLink; |
|
| 9257 | 9257 | } |
| 9258 | 9258 | public function getPreviousLink() |
| 9259 | 9259 | { |
| 9260 | - return $this->previousLink; |
|
| 9260 | + return $this->previousLink; |
|
| 9261 | 9261 | } |
| 9262 | 9262 | public function setStartIndex($startIndex) |
| 9263 | 9263 | { |
| 9264 | - $this->startIndex = $startIndex; |
|
| 9264 | + $this->startIndex = $startIndex; |
|
| 9265 | 9265 | } |
| 9266 | 9266 | public function getStartIndex() |
| 9267 | 9267 | { |
| 9268 | - return $this->startIndex; |
|
| 9268 | + return $this->startIndex; |
|
| 9269 | 9269 | } |
| 9270 | 9270 | public function setTotalResults($totalResults) |
| 9271 | 9271 | { |
| 9272 | - $this->totalResults = $totalResults; |
|
| 9272 | + $this->totalResults = $totalResults; |
|
| 9273 | 9273 | } |
| 9274 | 9274 | public function getTotalResults() |
| 9275 | 9275 | { |
| 9276 | - return $this->totalResults; |
|
| 9276 | + return $this->totalResults; |
|
| 9277 | 9277 | } |
| 9278 | 9278 | public function setUsername($username) |
| 9279 | 9279 | { |
| 9280 | - $this->username = $username; |
|
| 9280 | + $this->username = $username; |
|
| 9281 | 9281 | } |
| 9282 | 9282 | public function getUsername() |
| 9283 | 9283 | { |
| 9284 | - return $this->username; |
|
| 9284 | + return $this->username; |
|
| 9285 | 9285 | } |
| 9286 | 9286 | } |
| 9287 | 9287 | |
@@ -9300,51 +9300,51 @@ discard block |
||
| 9300 | 9300 | |
| 9301 | 9301 | public function setAccountId($accountId) |
| 9302 | 9302 | { |
| 9303 | - $this->accountId = $accountId; |
|
| 9303 | + $this->accountId = $accountId; |
|
| 9304 | 9304 | } |
| 9305 | 9305 | public function getAccountId() |
| 9306 | 9306 | { |
| 9307 | - return $this->accountId; |
|
| 9307 | + return $this->accountId; |
|
| 9308 | 9308 | } |
| 9309 | 9309 | public function setCustomDataSourceId($customDataSourceId) |
| 9310 | 9310 | { |
| 9311 | - $this->customDataSourceId = $customDataSourceId; |
|
| 9311 | + $this->customDataSourceId = $customDataSourceId; |
|
| 9312 | 9312 | } |
| 9313 | 9313 | public function getCustomDataSourceId() |
| 9314 | 9314 | { |
| 9315 | - return $this->customDataSourceId; |
|
| 9315 | + return $this->customDataSourceId; |
|
| 9316 | 9316 | } |
| 9317 | 9317 | public function setErrors($errors) |
| 9318 | 9318 | { |
| 9319 | - $this->errors = $errors; |
|
| 9319 | + $this->errors = $errors; |
|
| 9320 | 9320 | } |
| 9321 | 9321 | public function getErrors() |
| 9322 | 9322 | { |
| 9323 | - return $this->errors; |
|
| 9323 | + return $this->errors; |
|
| 9324 | 9324 | } |
| 9325 | 9325 | public function setId($id) |
| 9326 | 9326 | { |
| 9327 | - $this->id = $id; |
|
| 9327 | + $this->id = $id; |
|
| 9328 | 9328 | } |
| 9329 | 9329 | public function getId() |
| 9330 | 9330 | { |
| 9331 | - return $this->id; |
|
| 9331 | + return $this->id; |
|
| 9332 | 9332 | } |
| 9333 | 9333 | public function setKind($kind) |
| 9334 | 9334 | { |
| 9335 | - $this->kind = $kind; |
|
| 9335 | + $this->kind = $kind; |
|
| 9336 | 9336 | } |
| 9337 | 9337 | public function getKind() |
| 9338 | 9338 | { |
| 9339 | - return $this->kind; |
|
| 9339 | + return $this->kind; |
|
| 9340 | 9340 | } |
| 9341 | 9341 | public function setStatus($status) |
| 9342 | 9342 | { |
| 9343 | - $this->status = $status; |
|
| 9343 | + $this->status = $status; |
|
| 9344 | 9344 | } |
| 9345 | 9345 | public function getStatus() |
| 9346 | 9346 | { |
| 9347 | - return $this->status; |
|
| 9347 | + return $this->status; |
|
| 9348 | 9348 | } |
| 9349 | 9349 | } |
| 9350 | 9350 | |
@@ -9365,59 +9365,59 @@ discard block |
||
| 9365 | 9365 | |
| 9366 | 9366 | public function setItems($items) |
| 9367 | 9367 | { |
| 9368 | - $this->items = $items; |
|
| 9368 | + $this->items = $items; |
|
| 9369 | 9369 | } |
| 9370 | 9370 | public function getItems() |
| 9371 | 9371 | { |
| 9372 | - return $this->items; |
|
| 9372 | + return $this->items; |
|
| 9373 | 9373 | } |
| 9374 | 9374 | public function setItemsPerPage($itemsPerPage) |
| 9375 | 9375 | { |
| 9376 | - $this->itemsPerPage = $itemsPerPage; |
|
| 9376 | + $this->itemsPerPage = $itemsPerPage; |
|
| 9377 | 9377 | } |
| 9378 | 9378 | public function getItemsPerPage() |
| 9379 | 9379 | { |
| 9380 | - return $this->itemsPerPage; |
|
| 9380 | + return $this->itemsPerPage; |
|
| 9381 | 9381 | } |
| 9382 | 9382 | public function setKind($kind) |
| 9383 | 9383 | { |
| 9384 | - $this->kind = $kind; |
|
| 9384 | + $this->kind = $kind; |
|
| 9385 | 9385 | } |
| 9386 | 9386 | public function getKind() |
| 9387 | 9387 | { |
| 9388 | - return $this->kind; |
|
| 9388 | + return $this->kind; |
|
| 9389 | 9389 | } |
| 9390 | 9390 | public function setNextLink($nextLink) |
| 9391 | 9391 | { |
| 9392 | - $this->nextLink = $nextLink; |
|
| 9392 | + $this->nextLink = $nextLink; |
|
| 9393 | 9393 | } |
| 9394 | 9394 | public function getNextLink() |
| 9395 | 9395 | { |
| 9396 | - return $this->nextLink; |
|
| 9396 | + return $this->nextLink; |
|
| 9397 | 9397 | } |
| 9398 | 9398 | public function setPreviousLink($previousLink) |
| 9399 | 9399 | { |
| 9400 | - $this->previousLink = $previousLink; |
|
| 9400 | + $this->previousLink = $previousLink; |
|
| 9401 | 9401 | } |
| 9402 | 9402 | public function getPreviousLink() |
| 9403 | 9403 | { |
| 9404 | - return $this->previousLink; |
|
| 9404 | + return $this->previousLink; |
|
| 9405 | 9405 | } |
| 9406 | 9406 | public function setStartIndex($startIndex) |
| 9407 | 9407 | { |
| 9408 | - $this->startIndex = $startIndex; |
|
| 9408 | + $this->startIndex = $startIndex; |
|
| 9409 | 9409 | } |
| 9410 | 9410 | public function getStartIndex() |
| 9411 | 9411 | { |
| 9412 | - return $this->startIndex; |
|
| 9412 | + return $this->startIndex; |
|
| 9413 | 9413 | } |
| 9414 | 9414 | public function setTotalResults($totalResults) |
| 9415 | 9415 | { |
| 9416 | - $this->totalResults = $totalResults; |
|
| 9416 | + $this->totalResults = $totalResults; |
|
| 9417 | 9417 | } |
| 9418 | 9418 | public function getTotalResults() |
| 9419 | 9419 | { |
| 9420 | - return $this->totalResults; |
|
| 9420 | + return $this->totalResults; |
|
| 9421 | 9421 | } |
| 9422 | 9422 | } |
| 9423 | 9423 | |
@@ -9432,27 +9432,27 @@ discard block |
||
| 9432 | 9432 | |
| 9433 | 9433 | public function setEmail($email) |
| 9434 | 9434 | { |
| 9435 | - $this->email = $email; |
|
| 9435 | + $this->email = $email; |
|
| 9436 | 9436 | } |
| 9437 | 9437 | public function getEmail() |
| 9438 | 9438 | { |
| 9439 | - return $this->email; |
|
| 9439 | + return $this->email; |
|
| 9440 | 9440 | } |
| 9441 | 9441 | public function setId($id) |
| 9442 | 9442 | { |
| 9443 | - $this->id = $id; |
|
| 9443 | + $this->id = $id; |
|
| 9444 | 9444 | } |
| 9445 | 9445 | public function getId() |
| 9446 | 9446 | { |
| 9447 | - return $this->id; |
|
| 9447 | + return $this->id; |
|
| 9448 | 9448 | } |
| 9449 | 9449 | public function setKind($kind) |
| 9450 | 9450 | { |
| 9451 | - $this->kind = $kind; |
|
| 9451 | + $this->kind = $kind; |
|
| 9452 | 9452 | } |
| 9453 | 9453 | public function getKind() |
| 9454 | 9454 | { |
| 9455 | - return $this->kind; |
|
| 9455 | + return $this->kind; |
|
| 9456 | 9456 | } |
| 9457 | 9457 | } |
| 9458 | 9458 | |
@@ -9470,51 +9470,51 @@ discard block |
||
| 9470 | 9470 | |
| 9471 | 9471 | public function setAccountId($accountId) |
| 9472 | 9472 | { |
| 9473 | - $this->accountId = $accountId; |
|
| 9473 | + $this->accountId = $accountId; |
|
| 9474 | 9474 | } |
| 9475 | 9475 | public function getAccountId() |
| 9476 | 9476 | { |
| 9477 | - return $this->accountId; |
|
| 9477 | + return $this->accountId; |
|
| 9478 | 9478 | } |
| 9479 | 9479 | public function setHref($href) |
| 9480 | 9480 | { |
| 9481 | - $this->href = $href; |
|
| 9481 | + $this->href = $href; |
|
| 9482 | 9482 | } |
| 9483 | 9483 | public function getHref() |
| 9484 | 9484 | { |
| 9485 | - return $this->href; |
|
| 9485 | + return $this->href; |
|
| 9486 | 9486 | } |
| 9487 | 9487 | public function setId($id) |
| 9488 | 9488 | { |
| 9489 | - $this->id = $id; |
|
| 9489 | + $this->id = $id; |
|
| 9490 | 9490 | } |
| 9491 | 9491 | public function getId() |
| 9492 | 9492 | { |
| 9493 | - return $this->id; |
|
| 9493 | + return $this->id; |
|
| 9494 | 9494 | } |
| 9495 | 9495 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 9496 | 9496 | { |
| 9497 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9497 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9498 | 9498 | } |
| 9499 | 9499 | public function getInternalWebPropertyId() |
| 9500 | 9500 | { |
| 9501 | - return $this->internalWebPropertyId; |
|
| 9501 | + return $this->internalWebPropertyId; |
|
| 9502 | 9502 | } |
| 9503 | 9503 | public function setKind($kind) |
| 9504 | 9504 | { |
| 9505 | - $this->kind = $kind; |
|
| 9505 | + $this->kind = $kind; |
|
| 9506 | 9506 | } |
| 9507 | 9507 | public function getKind() |
| 9508 | 9508 | { |
| 9509 | - return $this->kind; |
|
| 9509 | + return $this->kind; |
|
| 9510 | 9510 | } |
| 9511 | 9511 | public function setName($name) |
| 9512 | 9512 | { |
| 9513 | - $this->name = $name; |
|
| 9513 | + $this->name = $name; |
|
| 9514 | 9514 | } |
| 9515 | 9515 | public function getName() |
| 9516 | 9516 | { |
| 9517 | - return $this->name; |
|
| 9517 | + return $this->name; |
|
| 9518 | 9518 | } |
| 9519 | 9519 | } |
| 9520 | 9520 | |
@@ -9535,59 +9535,59 @@ discard block |
||
| 9535 | 9535 | |
| 9536 | 9536 | public function setId($id) |
| 9537 | 9537 | { |
| 9538 | - $this->id = $id; |
|
| 9538 | + $this->id = $id; |
|
| 9539 | 9539 | } |
| 9540 | 9540 | public function getId() |
| 9541 | 9541 | { |
| 9542 | - return $this->id; |
|
| 9542 | + return $this->id; |
|
| 9543 | 9543 | } |
| 9544 | 9544 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 9545 | 9545 | { |
| 9546 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9546 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9547 | 9547 | } |
| 9548 | 9548 | public function getInternalWebPropertyId() |
| 9549 | 9549 | { |
| 9550 | - return $this->internalWebPropertyId; |
|
| 9550 | + return $this->internalWebPropertyId; |
|
| 9551 | 9551 | } |
| 9552 | 9552 | public function setKind($kind) |
| 9553 | 9553 | { |
| 9554 | - $this->kind = $kind; |
|
| 9554 | + $this->kind = $kind; |
|
| 9555 | 9555 | } |
| 9556 | 9556 | public function getKind() |
| 9557 | 9557 | { |
| 9558 | - return $this->kind; |
|
| 9558 | + return $this->kind; |
|
| 9559 | 9559 | } |
| 9560 | 9560 | public function setLevel($level) |
| 9561 | 9561 | { |
| 9562 | - $this->level = $level; |
|
| 9562 | + $this->level = $level; |
|
| 9563 | 9563 | } |
| 9564 | 9564 | public function getLevel() |
| 9565 | 9565 | { |
| 9566 | - return $this->level; |
|
| 9566 | + return $this->level; |
|
| 9567 | 9567 | } |
| 9568 | 9568 | public function setName($name) |
| 9569 | 9569 | { |
| 9570 | - $this->name = $name; |
|
| 9570 | + $this->name = $name; |
|
| 9571 | 9571 | } |
| 9572 | 9572 | public function getName() |
| 9573 | 9573 | { |
| 9574 | - return $this->name; |
|
| 9574 | + return $this->name; |
|
| 9575 | 9575 | } |
| 9576 | 9576 | public function setProfiles($profiles) |
| 9577 | 9577 | { |
| 9578 | - $this->profiles = $profiles; |
|
| 9578 | + $this->profiles = $profiles; |
|
| 9579 | 9579 | } |
| 9580 | 9580 | public function getProfiles() |
| 9581 | 9581 | { |
| 9582 | - return $this->profiles; |
|
| 9582 | + return $this->profiles; |
|
| 9583 | 9583 | } |
| 9584 | 9584 | public function setWebsiteUrl($websiteUrl) |
| 9585 | 9585 | { |
| 9586 | - $this->websiteUrl = $websiteUrl; |
|
| 9586 | + $this->websiteUrl = $websiteUrl; |
|
| 9587 | 9587 | } |
| 9588 | 9588 | public function getWebsiteUrl() |
| 9589 | 9589 | { |
| 9590 | - return $this->websiteUrl; |
|
| 9590 | + return $this->websiteUrl; |
|
| 9591 | 9591 | } |
| 9592 | 9592 | } |
| 9593 | 9593 | |
@@ -9609,67 +9609,67 @@ discard block |
||
| 9609 | 9609 | |
| 9610 | 9610 | public function setItems($items) |
| 9611 | 9611 | { |
| 9612 | - $this->items = $items; |
|
| 9612 | + $this->items = $items; |
|
| 9613 | 9613 | } |
| 9614 | 9614 | public function getItems() |
| 9615 | 9615 | { |
| 9616 | - return $this->items; |
|
| 9616 | + return $this->items; |
|
| 9617 | 9617 | } |
| 9618 | 9618 | public function setItemsPerPage($itemsPerPage) |
| 9619 | 9619 | { |
| 9620 | - $this->itemsPerPage = $itemsPerPage; |
|
| 9620 | + $this->itemsPerPage = $itemsPerPage; |
|
| 9621 | 9621 | } |
| 9622 | 9622 | public function getItemsPerPage() |
| 9623 | 9623 | { |
| 9624 | - return $this->itemsPerPage; |
|
| 9624 | + return $this->itemsPerPage; |
|
| 9625 | 9625 | } |
| 9626 | 9626 | public function setKind($kind) |
| 9627 | 9627 | { |
| 9628 | - $this->kind = $kind; |
|
| 9628 | + $this->kind = $kind; |
|
| 9629 | 9629 | } |
| 9630 | 9630 | public function getKind() |
| 9631 | 9631 | { |
| 9632 | - return $this->kind; |
|
| 9632 | + return $this->kind; |
|
| 9633 | 9633 | } |
| 9634 | 9634 | public function setNextLink($nextLink) |
| 9635 | 9635 | { |
| 9636 | - $this->nextLink = $nextLink; |
|
| 9636 | + $this->nextLink = $nextLink; |
|
| 9637 | 9637 | } |
| 9638 | 9638 | public function getNextLink() |
| 9639 | 9639 | { |
| 9640 | - return $this->nextLink; |
|
| 9640 | + return $this->nextLink; |
|
| 9641 | 9641 | } |
| 9642 | 9642 | public function setPreviousLink($previousLink) |
| 9643 | 9643 | { |
| 9644 | - $this->previousLink = $previousLink; |
|
| 9644 | + $this->previousLink = $previousLink; |
|
| 9645 | 9645 | } |
| 9646 | 9646 | public function getPreviousLink() |
| 9647 | 9647 | { |
| 9648 | - return $this->previousLink; |
|
| 9648 | + return $this->previousLink; |
|
| 9649 | 9649 | } |
| 9650 | 9650 | public function setStartIndex($startIndex) |
| 9651 | 9651 | { |
| 9652 | - $this->startIndex = $startIndex; |
|
| 9652 | + $this->startIndex = $startIndex; |
|
| 9653 | 9653 | } |
| 9654 | 9654 | public function getStartIndex() |
| 9655 | 9655 | { |
| 9656 | - return $this->startIndex; |
|
| 9656 | + return $this->startIndex; |
|
| 9657 | 9657 | } |
| 9658 | 9658 | public function setTotalResults($totalResults) |
| 9659 | 9659 | { |
| 9660 | - $this->totalResults = $totalResults; |
|
| 9660 | + $this->totalResults = $totalResults; |
|
| 9661 | 9661 | } |
| 9662 | 9662 | public function getTotalResults() |
| 9663 | 9663 | { |
| 9664 | - return $this->totalResults; |
|
| 9664 | + return $this->totalResults; |
|
| 9665 | 9665 | } |
| 9666 | 9666 | public function setUsername($username) |
| 9667 | 9667 | { |
| 9668 | - $this->username = $username; |
|
| 9668 | + $this->username = $username; |
|
| 9669 | 9669 | } |
| 9670 | 9670 | public function getUsername() |
| 9671 | 9671 | { |
| 9672 | - return $this->username; |
|
| 9672 | + return $this->username; |
|
| 9673 | 9673 | } |
| 9674 | 9674 | } |
| 9675 | 9675 | |
@@ -9700,131 +9700,131 @@ discard block |
||
| 9700 | 9700 | |
| 9701 | 9701 | public function setAccountId($accountId) |
| 9702 | 9702 | { |
| 9703 | - $this->accountId = $accountId; |
|
| 9703 | + $this->accountId = $accountId; |
|
| 9704 | 9704 | } |
| 9705 | 9705 | public function getAccountId() |
| 9706 | 9706 | { |
| 9707 | - return $this->accountId; |
|
| 9707 | + return $this->accountId; |
|
| 9708 | 9708 | } |
| 9709 | 9709 | public function setChildLink(Google_Service_Analytics_WebpropertyChildLink $childLink) |
| 9710 | 9710 | { |
| 9711 | - $this->childLink = $childLink; |
|
| 9711 | + $this->childLink = $childLink; |
|
| 9712 | 9712 | } |
| 9713 | 9713 | public function getChildLink() |
| 9714 | 9714 | { |
| 9715 | - return $this->childLink; |
|
| 9715 | + return $this->childLink; |
|
| 9716 | 9716 | } |
| 9717 | 9717 | public function setCreated($created) |
| 9718 | 9718 | { |
| 9719 | - $this->created = $created; |
|
| 9719 | + $this->created = $created; |
|
| 9720 | 9720 | } |
| 9721 | 9721 | public function getCreated() |
| 9722 | 9722 | { |
| 9723 | - return $this->created; |
|
| 9723 | + return $this->created; |
|
| 9724 | 9724 | } |
| 9725 | 9725 | public function setDefaultProfileId($defaultProfileId) |
| 9726 | 9726 | { |
| 9727 | - $this->defaultProfileId = $defaultProfileId; |
|
| 9727 | + $this->defaultProfileId = $defaultProfileId; |
|
| 9728 | 9728 | } |
| 9729 | 9729 | public function getDefaultProfileId() |
| 9730 | 9730 | { |
| 9731 | - return $this->defaultProfileId; |
|
| 9731 | + return $this->defaultProfileId; |
|
| 9732 | 9732 | } |
| 9733 | 9733 | public function setId($id) |
| 9734 | 9734 | { |
| 9735 | - $this->id = $id; |
|
| 9735 | + $this->id = $id; |
|
| 9736 | 9736 | } |
| 9737 | 9737 | public function getId() |
| 9738 | 9738 | { |
| 9739 | - return $this->id; |
|
| 9739 | + return $this->id; |
|
| 9740 | 9740 | } |
| 9741 | 9741 | public function setIndustryVertical($industryVertical) |
| 9742 | 9742 | { |
| 9743 | - $this->industryVertical = $industryVertical; |
|
| 9743 | + $this->industryVertical = $industryVertical; |
|
| 9744 | 9744 | } |
| 9745 | 9745 | public function getIndustryVertical() |
| 9746 | 9746 | { |
| 9747 | - return $this->industryVertical; |
|
| 9747 | + return $this->industryVertical; |
|
| 9748 | 9748 | } |
| 9749 | 9749 | public function setInternalWebPropertyId($internalWebPropertyId) |
| 9750 | 9750 | { |
| 9751 | - $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9751 | + $this->internalWebPropertyId = $internalWebPropertyId; |
|
| 9752 | 9752 | } |
| 9753 | 9753 | public function getInternalWebPropertyId() |
| 9754 | 9754 | { |
| 9755 | - return $this->internalWebPropertyId; |
|
| 9755 | + return $this->internalWebPropertyId; |
|
| 9756 | 9756 | } |
| 9757 | 9757 | public function setKind($kind) |
| 9758 | 9758 | { |
| 9759 | - $this->kind = $kind; |
|
| 9759 | + $this->kind = $kind; |
|
| 9760 | 9760 | } |
| 9761 | 9761 | public function getKind() |
| 9762 | 9762 | { |
| 9763 | - return $this->kind; |
|
| 9763 | + return $this->kind; |
|
| 9764 | 9764 | } |
| 9765 | 9765 | public function setLevel($level) |
| 9766 | 9766 | { |
| 9767 | - $this->level = $level; |
|
| 9767 | + $this->level = $level; |
|
| 9768 | 9768 | } |
| 9769 | 9769 | public function getLevel() |
| 9770 | 9770 | { |
| 9771 | - return $this->level; |
|
| 9771 | + return $this->level; |
|
| 9772 | 9772 | } |
| 9773 | 9773 | public function setName($name) |
| 9774 | 9774 | { |
| 9775 | - $this->name = $name; |
|
| 9775 | + $this->name = $name; |
|
| 9776 | 9776 | } |
| 9777 | 9777 | public function getName() |
| 9778 | 9778 | { |
| 9779 | - return $this->name; |
|
| 9779 | + return $this->name; |
|
| 9780 | 9780 | } |
| 9781 | 9781 | public function setParentLink(Google_Service_Analytics_WebpropertyParentLink $parentLink) |
| 9782 | 9782 | { |
| 9783 | - $this->parentLink = $parentLink; |
|
| 9783 | + $this->parentLink = $parentLink; |
|
| 9784 | 9784 | } |
| 9785 | 9785 | public function getParentLink() |
| 9786 | 9786 | { |
| 9787 | - return $this->parentLink; |
|
| 9787 | + return $this->parentLink; |
|
| 9788 | 9788 | } |
| 9789 | 9789 | public function setPermissions(Google_Service_Analytics_WebpropertyPermissions $permissions) |
| 9790 | 9790 | { |
| 9791 | - $this->permissions = $permissions; |
|
| 9791 | + $this->permissions = $permissions; |
|
| 9792 | 9792 | } |
| 9793 | 9793 | public function getPermissions() |
| 9794 | 9794 | { |
| 9795 | - return $this->permissions; |
|
| 9795 | + return $this->permissions; |
|
| 9796 | 9796 | } |
| 9797 | 9797 | public function setProfileCount($profileCount) |
| 9798 | 9798 | { |
| 9799 | - $this->profileCount = $profileCount; |
|
| 9799 | + $this->profileCount = $profileCount; |
|
| 9800 | 9800 | } |
| 9801 | 9801 | public function getProfileCount() |
| 9802 | 9802 | { |
| 9803 | - return $this->profileCount; |
|
| 9803 | + return $this->profileCount; |
|
| 9804 | 9804 | } |
| 9805 | 9805 | public function setSelfLink($selfLink) |
| 9806 | 9806 | { |
| 9807 | - $this->selfLink = $selfLink; |
|
| 9807 | + $this->selfLink = $selfLink; |
|
| 9808 | 9808 | } |
| 9809 | 9809 | public function getSelfLink() |
| 9810 | 9810 | { |
| 9811 | - return $this->selfLink; |
|
| 9811 | + return $this->selfLink; |
|
| 9812 | 9812 | } |
| 9813 | 9813 | public function setUpdated($updated) |
| 9814 | 9814 | { |
| 9815 | - $this->updated = $updated; |
|
| 9815 | + $this->updated = $updated; |
|
| 9816 | 9816 | } |
| 9817 | 9817 | public function getUpdated() |
| 9818 | 9818 | { |
| 9819 | - return $this->updated; |
|
| 9819 | + return $this->updated; |
|
| 9820 | 9820 | } |
| 9821 | 9821 | public function setWebsiteUrl($websiteUrl) |
| 9822 | 9822 | { |
| 9823 | - $this->websiteUrl = $websiteUrl; |
|
| 9823 | + $this->websiteUrl = $websiteUrl; |
|
| 9824 | 9824 | } |
| 9825 | 9825 | public function getWebsiteUrl() |
| 9826 | 9826 | { |
| 9827 | - return $this->websiteUrl; |
|
| 9827 | + return $this->websiteUrl; |
|
| 9828 | 9828 | } |
| 9829 | 9829 | } |
| 9830 | 9830 | |
@@ -9838,19 +9838,19 @@ discard block |
||
| 9838 | 9838 | |
| 9839 | 9839 | public function setHref($href) |
| 9840 | 9840 | { |
| 9841 | - $this->href = $href; |
|
| 9841 | + $this->href = $href; |
|
| 9842 | 9842 | } |
| 9843 | 9843 | public function getHref() |
| 9844 | 9844 | { |
| 9845 | - return $this->href; |
|
| 9845 | + return $this->href; |
|
| 9846 | 9846 | } |
| 9847 | 9847 | public function setType($type) |
| 9848 | 9848 | { |
| 9849 | - $this->type = $type; |
|
| 9849 | + $this->type = $type; |
|
| 9850 | 9850 | } |
| 9851 | 9851 | public function getType() |
| 9852 | 9852 | { |
| 9853 | - return $this->type; |
|
| 9853 | + return $this->type; |
|
| 9854 | 9854 | } |
| 9855 | 9855 | } |
| 9856 | 9856 | |
@@ -9864,19 +9864,19 @@ discard block |
||
| 9864 | 9864 | |
| 9865 | 9865 | public function setHref($href) |
| 9866 | 9866 | { |
| 9867 | - $this->href = $href; |
|
| 9867 | + $this->href = $href; |
|
| 9868 | 9868 | } |
| 9869 | 9869 | public function getHref() |
| 9870 | 9870 | { |
| 9871 | - return $this->href; |
|
| 9871 | + return $this->href; |
|
| 9872 | 9872 | } |
| 9873 | 9873 | public function setType($type) |
| 9874 | 9874 | { |
| 9875 | - $this->type = $type; |
|
| 9875 | + $this->type = $type; |
|
| 9876 | 9876 | } |
| 9877 | 9877 | public function getType() |
| 9878 | 9878 | { |
| 9879 | - return $this->type; |
|
| 9879 | + return $this->type; |
|
| 9880 | 9880 | } |
| 9881 | 9881 | } |
| 9882 | 9882 | |
@@ -9890,10 +9890,10 @@ discard block |
||
| 9890 | 9890 | |
| 9891 | 9891 | public function setEffective($effective) |
| 9892 | 9892 | { |
| 9893 | - $this->effective = $effective; |
|
| 9893 | + $this->effective = $effective; |
|
| 9894 | 9894 | } |
| 9895 | 9895 | public function getEffective() |
| 9896 | 9896 | { |
| 9897 | - return $this->effective; |
|
| 9897 | + return $this->effective; |
|
| 9898 | 9898 | } |
| 9899 | 9899 | } |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | 'required' => true, |
| 299 | 299 | ), |
| 300 | 300 | ), |
| 301 | - ),'insert' => array( |
|
| 301 | + ), 'insert' => array( |
|
| 302 | 302 | 'path' => 'management/accounts/{accountId}/entityUserLinks', |
| 303 | 303 | 'httpMethod' => 'POST', |
| 304 | 304 | 'parameters' => array( |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | 'required' => true, |
| 309 | 309 | ), |
| 310 | 310 | ), |
| 311 | - ),'list' => array( |
|
| 311 | + ), 'list' => array( |
|
| 312 | 312 | 'path' => 'management/accounts/{accountId}/entityUserLinks', |
| 313 | 313 | 'httpMethod' => 'GET', |
| 314 | 314 | 'parameters' => array( |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | 'type' => 'integer', |
| 327 | 327 | ), |
| 328 | 328 | ), |
| 329 | - ),'update' => array( |
|
| 329 | + ), 'update' => array( |
|
| 330 | 330 | 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}', |
| 331 | 331 | 'httpMethod' => 'PUT', |
| 332 | 332 | 'parameters' => array( |
@@ -427,7 +427,7 @@ discard block |
||
| 427 | 427 | 'required' => true, |
| 428 | 428 | ), |
| 429 | 429 | ), |
| 430 | - ),'insert' => array( |
|
| 430 | + ), 'insert' => array( |
|
| 431 | 431 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
| 432 | 432 | 'httpMethod' => 'POST', |
| 433 | 433 | 'parameters' => array( |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | 'required' => true, |
| 443 | 443 | ), |
| 444 | 444 | ), |
| 445 | - ),'list' => array( |
|
| 445 | + ), 'list' => array( |
|
| 446 | 446 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions', |
| 447 | 447 | 'httpMethod' => 'GET', |
| 448 | 448 | 'parameters' => array( |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | 'type' => 'integer', |
| 466 | 466 | ), |
| 467 | 467 | ), |
| 468 | - ),'patch' => array( |
|
| 468 | + ), 'patch' => array( |
|
| 469 | 469 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
| 470 | 470 | 'httpMethod' => 'PATCH', |
| 471 | 471 | 'parameters' => array( |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | 'type' => 'boolean', |
| 490 | 490 | ), |
| 491 | 491 | ), |
| 492 | - ),'update' => array( |
|
| 492 | + ), 'update' => array( |
|
| 493 | 493 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}', |
| 494 | 494 | 'httpMethod' => 'PUT', |
| 495 | 495 | 'parameters' => array( |
@@ -543,7 +543,7 @@ discard block |
||
| 543 | 543 | 'required' => true, |
| 544 | 544 | ), |
| 545 | 545 | ), |
| 546 | - ),'insert' => array( |
|
| 546 | + ), 'insert' => array( |
|
| 547 | 547 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
| 548 | 548 | 'httpMethod' => 'POST', |
| 549 | 549 | 'parameters' => array( |
@@ -558,7 +558,7 @@ discard block |
||
| 558 | 558 | 'required' => true, |
| 559 | 559 | ), |
| 560 | 560 | ), |
| 561 | - ),'list' => array( |
|
| 561 | + ), 'list' => array( |
|
| 562 | 562 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics', |
| 563 | 563 | 'httpMethod' => 'GET', |
| 564 | 564 | 'parameters' => array( |
@@ -581,7 +581,7 @@ discard block |
||
| 581 | 581 | 'type' => 'integer', |
| 582 | 582 | ), |
| 583 | 583 | ), |
| 584 | - ),'patch' => array( |
|
| 584 | + ), 'patch' => array( |
|
| 585 | 585 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
| 586 | 586 | 'httpMethod' => 'PATCH', |
| 587 | 587 | 'parameters' => array( |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | 'type' => 'boolean', |
| 606 | 606 | ), |
| 607 | 607 | ), |
| 608 | - ),'update' => array( |
|
| 608 | + ), 'update' => array( |
|
| 609 | 609 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}', |
| 610 | 610 | 'httpMethod' => 'PUT', |
| 611 | 611 | 'parameters' => array( |
@@ -664,7 +664,7 @@ discard block |
||
| 664 | 664 | 'required' => true, |
| 665 | 665 | ), |
| 666 | 666 | ), |
| 667 | - ),'get' => array( |
|
| 667 | + ), 'get' => array( |
|
| 668 | 668 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
| 669 | 669 | 'httpMethod' => 'GET', |
| 670 | 670 | 'parameters' => array( |
@@ -689,7 +689,7 @@ discard block |
||
| 689 | 689 | 'required' => true, |
| 690 | 690 | ), |
| 691 | 691 | ), |
| 692 | - ),'insert' => array( |
|
| 692 | + ), 'insert' => array( |
|
| 693 | 693 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
| 694 | 694 | 'httpMethod' => 'POST', |
| 695 | 695 | 'parameters' => array( |
@@ -709,7 +709,7 @@ discard block |
||
| 709 | 709 | 'required' => true, |
| 710 | 710 | ), |
| 711 | 711 | ), |
| 712 | - ),'list' => array( |
|
| 712 | + ), 'list' => array( |
|
| 713 | 713 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments', |
| 714 | 714 | 'httpMethod' => 'GET', |
| 715 | 715 | 'parameters' => array( |
@@ -737,7 +737,7 @@ discard block |
||
| 737 | 737 | 'type' => 'integer', |
| 738 | 738 | ), |
| 739 | 739 | ), |
| 740 | - ),'patch' => array( |
|
| 740 | + ), 'patch' => array( |
|
| 741 | 741 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
| 742 | 742 | 'httpMethod' => 'PATCH', |
| 743 | 743 | 'parameters' => array( |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | 'required' => true, |
| 763 | 763 | ), |
| 764 | 764 | ), |
| 765 | - ),'update' => array( |
|
| 765 | + ), 'update' => array( |
|
| 766 | 766 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}', |
| 767 | 767 | 'httpMethod' => 'PUT', |
| 768 | 768 | 'parameters' => array( |
@@ -812,7 +812,7 @@ discard block |
||
| 812 | 812 | 'required' => true, |
| 813 | 813 | ), |
| 814 | 814 | ), |
| 815 | - ),'get' => array( |
|
| 815 | + ), 'get' => array( |
|
| 816 | 816 | 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
| 817 | 817 | 'httpMethod' => 'GET', |
| 818 | 818 | 'parameters' => array( |
@@ -827,7 +827,7 @@ discard block |
||
| 827 | 827 | 'required' => true, |
| 828 | 828 | ), |
| 829 | 829 | ), |
| 830 | - ),'insert' => array( |
|
| 830 | + ), 'insert' => array( |
|
| 831 | 831 | 'path' => 'management/accounts/{accountId}/filters', |
| 832 | 832 | 'httpMethod' => 'POST', |
| 833 | 833 | 'parameters' => array( |
@@ -837,7 +837,7 @@ discard block |
||
| 837 | 837 | 'required' => true, |
| 838 | 838 | ), |
| 839 | 839 | ), |
| 840 | - ),'list' => array( |
|
| 840 | + ), 'list' => array( |
|
| 841 | 841 | 'path' => 'management/accounts/{accountId}/filters', |
| 842 | 842 | 'httpMethod' => 'GET', |
| 843 | 843 | 'parameters' => array( |
@@ -855,7 +855,7 @@ discard block |
||
| 855 | 855 | 'type' => 'integer', |
| 856 | 856 | ), |
| 857 | 857 | ), |
| 858 | - ),'patch' => array( |
|
| 858 | + ), 'patch' => array( |
|
| 859 | 859 | 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
| 860 | 860 | 'httpMethod' => 'PATCH', |
| 861 | 861 | 'parameters' => array( |
@@ -870,7 +870,7 @@ discard block |
||
| 870 | 870 | 'required' => true, |
| 871 | 871 | ), |
| 872 | 872 | ), |
| 873 | - ),'update' => array( |
|
| 873 | + ), 'update' => array( |
|
| 874 | 874 | 'path' => 'management/accounts/{accountId}/filters/{filterId}', |
| 875 | 875 | 'httpMethod' => 'PUT', |
| 876 | 876 | 'parameters' => array( |
@@ -920,7 +920,7 @@ discard block |
||
| 920 | 920 | 'required' => true, |
| 921 | 921 | ), |
| 922 | 922 | ), |
| 923 | - ),'insert' => array( |
|
| 923 | + ), 'insert' => array( |
|
| 924 | 924 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
| 925 | 925 | 'httpMethod' => 'POST', |
| 926 | 926 | 'parameters' => array( |
@@ -940,7 +940,7 @@ discard block |
||
| 940 | 940 | 'required' => true, |
| 941 | 941 | ), |
| 942 | 942 | ), |
| 943 | - ),'list' => array( |
|
| 943 | + ), 'list' => array( |
|
| 944 | 944 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals', |
| 945 | 945 | 'httpMethod' => 'GET', |
| 946 | 946 | 'parameters' => array( |
@@ -968,7 +968,7 @@ discard block |
||
| 968 | 968 | 'type' => 'integer', |
| 969 | 969 | ), |
| 970 | 970 | ), |
| 971 | - ),'patch' => array( |
|
| 971 | + ), 'patch' => array( |
|
| 972 | 972 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
| 973 | 973 | 'httpMethod' => 'PATCH', |
| 974 | 974 | 'parameters' => array( |
@@ -993,7 +993,7 @@ discard block |
||
| 993 | 993 | 'required' => true, |
| 994 | 994 | ), |
| 995 | 995 | ), |
| 996 | - ),'update' => array( |
|
| 996 | + ), 'update' => array( |
|
| 997 | 997 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}', |
| 998 | 998 | 'httpMethod' => 'PUT', |
| 999 | 999 | 'parameters' => array( |
@@ -1053,7 +1053,7 @@ discard block |
||
| 1053 | 1053 | 'required' => true, |
| 1054 | 1054 | ), |
| 1055 | 1055 | ), |
| 1056 | - ),'get' => array( |
|
| 1056 | + ), 'get' => array( |
|
| 1057 | 1057 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
| 1058 | 1058 | 'httpMethod' => 'GET', |
| 1059 | 1059 | 'parameters' => array( |
@@ -1078,7 +1078,7 @@ discard block |
||
| 1078 | 1078 | 'required' => true, |
| 1079 | 1079 | ), |
| 1080 | 1080 | ), |
| 1081 | - ),'insert' => array( |
|
| 1081 | + ), 'insert' => array( |
|
| 1082 | 1082 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
| 1083 | 1083 | 'httpMethod' => 'POST', |
| 1084 | 1084 | 'parameters' => array( |
@@ -1098,7 +1098,7 @@ discard block |
||
| 1098 | 1098 | 'required' => true, |
| 1099 | 1099 | ), |
| 1100 | 1100 | ), |
| 1101 | - ),'list' => array( |
|
| 1101 | + ), 'list' => array( |
|
| 1102 | 1102 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks', |
| 1103 | 1103 | 'httpMethod' => 'GET', |
| 1104 | 1104 | 'parameters' => array( |
@@ -1126,7 +1126,7 @@ discard block |
||
| 1126 | 1126 | 'type' => 'integer', |
| 1127 | 1127 | ), |
| 1128 | 1128 | ), |
| 1129 | - ),'patch' => array( |
|
| 1129 | + ), 'patch' => array( |
|
| 1130 | 1130 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
| 1131 | 1131 | 'httpMethod' => 'PATCH', |
| 1132 | 1132 | 'parameters' => array( |
@@ -1151,7 +1151,7 @@ discard block |
||
| 1151 | 1151 | 'required' => true, |
| 1152 | 1152 | ), |
| 1153 | 1153 | ), |
| 1154 | - ),'update' => array( |
|
| 1154 | + ), 'update' => array( |
|
| 1155 | 1155 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}', |
| 1156 | 1156 | 'httpMethod' => 'PUT', |
| 1157 | 1157 | 'parameters' => array( |
@@ -1211,7 +1211,7 @@ discard block |
||
| 1211 | 1211 | 'required' => true, |
| 1212 | 1212 | ), |
| 1213 | 1213 | ), |
| 1214 | - ),'insert' => array( |
|
| 1214 | + ), 'insert' => array( |
|
| 1215 | 1215 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
| 1216 | 1216 | 'httpMethod' => 'POST', |
| 1217 | 1217 | 'parameters' => array( |
@@ -1231,7 +1231,7 @@ discard block |
||
| 1231 | 1231 | 'required' => true, |
| 1232 | 1232 | ), |
| 1233 | 1233 | ), |
| 1234 | - ),'list' => array( |
|
| 1234 | + ), 'list' => array( |
|
| 1235 | 1235 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks', |
| 1236 | 1236 | 'httpMethod' => 'GET', |
| 1237 | 1237 | 'parameters' => array( |
@@ -1259,7 +1259,7 @@ discard block |
||
| 1259 | 1259 | 'type' => 'integer', |
| 1260 | 1260 | ), |
| 1261 | 1261 | ), |
| 1262 | - ),'update' => array( |
|
| 1262 | + ), 'update' => array( |
|
| 1263 | 1263 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}', |
| 1264 | 1264 | 'httpMethod' => 'PUT', |
| 1265 | 1265 | 'parameters' => array( |
@@ -1314,7 +1314,7 @@ discard block |
||
| 1314 | 1314 | 'required' => true, |
| 1315 | 1315 | ), |
| 1316 | 1316 | ), |
| 1317 | - ),'get' => array( |
|
| 1317 | + ), 'get' => array( |
|
| 1318 | 1318 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
| 1319 | 1319 | 'httpMethod' => 'GET', |
| 1320 | 1320 | 'parameters' => array( |
@@ -1334,7 +1334,7 @@ discard block |
||
| 1334 | 1334 | 'required' => true, |
| 1335 | 1335 | ), |
| 1336 | 1336 | ), |
| 1337 | - ),'insert' => array( |
|
| 1337 | + ), 'insert' => array( |
|
| 1338 | 1338 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
| 1339 | 1339 | 'httpMethod' => 'POST', |
| 1340 | 1340 | 'parameters' => array( |
@@ -1349,7 +1349,7 @@ discard block |
||
| 1349 | 1349 | 'required' => true, |
| 1350 | 1350 | ), |
| 1351 | 1351 | ), |
| 1352 | - ),'list' => array( |
|
| 1352 | + ), 'list' => array( |
|
| 1353 | 1353 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles', |
| 1354 | 1354 | 'httpMethod' => 'GET', |
| 1355 | 1355 | 'parameters' => array( |
@@ -1372,7 +1372,7 @@ discard block |
||
| 1372 | 1372 | 'type' => 'integer', |
| 1373 | 1373 | ), |
| 1374 | 1374 | ), |
| 1375 | - ),'patch' => array( |
|
| 1375 | + ), 'patch' => array( |
|
| 1376 | 1376 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
| 1377 | 1377 | 'httpMethod' => 'PATCH', |
| 1378 | 1378 | 'parameters' => array( |
@@ -1392,7 +1392,7 @@ discard block |
||
| 1392 | 1392 | 'required' => true, |
| 1393 | 1393 | ), |
| 1394 | 1394 | ), |
| 1395 | - ),'update' => array( |
|
| 1395 | + ), 'update' => array( |
|
| 1396 | 1396 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}', |
| 1397 | 1397 | 'httpMethod' => 'PUT', |
| 1398 | 1398 | 'parameters' => array( |
@@ -1470,7 +1470,7 @@ discard block |
||
| 1470 | 1470 | 'required' => true, |
| 1471 | 1471 | ), |
| 1472 | 1472 | ), |
| 1473 | - ),'insert' => array( |
|
| 1473 | + ), 'insert' => array( |
|
| 1474 | 1474 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
| 1475 | 1475 | 'httpMethod' => 'POST', |
| 1476 | 1476 | 'parameters' => array( |
@@ -1490,7 +1490,7 @@ discard block |
||
| 1490 | 1490 | 'required' => true, |
| 1491 | 1491 | ), |
| 1492 | 1492 | ), |
| 1493 | - ),'list' => array( |
|
| 1493 | + ), 'list' => array( |
|
| 1494 | 1494 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports', |
| 1495 | 1495 | 'httpMethod' => 'GET', |
| 1496 | 1496 | 'parameters' => array( |
@@ -1548,7 +1548,7 @@ discard block |
||
| 1548 | 1548 | 'required' => true, |
| 1549 | 1549 | ), |
| 1550 | 1550 | ), |
| 1551 | - ),'get' => array( |
|
| 1551 | + ), 'get' => array( |
|
| 1552 | 1552 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}', |
| 1553 | 1553 | 'httpMethod' => 'GET', |
| 1554 | 1554 | 'parameters' => array( |
@@ -1573,7 +1573,7 @@ discard block |
||
| 1573 | 1573 | 'required' => true, |
| 1574 | 1574 | ), |
| 1575 | 1575 | ), |
| 1576 | - ),'list' => array( |
|
| 1576 | + ), 'list' => array( |
|
| 1577 | 1577 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
| 1578 | 1578 | 'httpMethod' => 'GET', |
| 1579 | 1579 | 'parameters' => array( |
@@ -1601,7 +1601,7 @@ discard block |
||
| 1601 | 1601 | 'type' => 'integer', |
| 1602 | 1602 | ), |
| 1603 | 1603 | ), |
| 1604 | - ),'uploadData' => array( |
|
| 1604 | + ), 'uploadData' => array( |
|
| 1605 | 1605 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads', |
| 1606 | 1606 | 'httpMethod' => 'POST', |
| 1607 | 1607 | 'parameters' => array( |
@@ -1651,7 +1651,7 @@ discard block |
||
| 1651 | 1651 | 'required' => true, |
| 1652 | 1652 | ), |
| 1653 | 1653 | ), |
| 1654 | - ),'get' => array( |
|
| 1654 | + ), 'get' => array( |
|
| 1655 | 1655 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
| 1656 | 1656 | 'httpMethod' => 'GET', |
| 1657 | 1657 | 'parameters' => array( |
@@ -1671,7 +1671,7 @@ discard block |
||
| 1671 | 1671 | 'required' => true, |
| 1672 | 1672 | ), |
| 1673 | 1673 | ), |
| 1674 | - ),'insert' => array( |
|
| 1674 | + ), 'insert' => array( |
|
| 1675 | 1675 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
| 1676 | 1676 | 'httpMethod' => 'POST', |
| 1677 | 1677 | 'parameters' => array( |
@@ -1686,7 +1686,7 @@ discard block |
||
| 1686 | 1686 | 'required' => true, |
| 1687 | 1687 | ), |
| 1688 | 1688 | ), |
| 1689 | - ),'list' => array( |
|
| 1689 | + ), 'list' => array( |
|
| 1690 | 1690 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks', |
| 1691 | 1691 | 'httpMethod' => 'GET', |
| 1692 | 1692 | 'parameters' => array( |
@@ -1709,7 +1709,7 @@ discard block |
||
| 1709 | 1709 | 'type' => 'integer', |
| 1710 | 1710 | ), |
| 1711 | 1711 | ), |
| 1712 | - ),'patch' => array( |
|
| 1712 | + ), 'patch' => array( |
|
| 1713 | 1713 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
| 1714 | 1714 | 'httpMethod' => 'PATCH', |
| 1715 | 1715 | 'parameters' => array( |
@@ -1729,7 +1729,7 @@ discard block |
||
| 1729 | 1729 | 'required' => true, |
| 1730 | 1730 | ), |
| 1731 | 1731 | ), |
| 1732 | - ),'update' => array( |
|
| 1732 | + ), 'update' => array( |
|
| 1733 | 1733 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}', |
| 1734 | 1734 | 'httpMethod' => 'PUT', |
| 1735 | 1735 | 'parameters' => array( |
@@ -1774,7 +1774,7 @@ discard block |
||
| 1774 | 1774 | 'required' => true, |
| 1775 | 1775 | ), |
| 1776 | 1776 | ), |
| 1777 | - ),'insert' => array( |
|
| 1777 | + ), 'insert' => array( |
|
| 1778 | 1778 | 'path' => 'management/accounts/{accountId}/webproperties', |
| 1779 | 1779 | 'httpMethod' => 'POST', |
| 1780 | 1780 | 'parameters' => array( |
@@ -1784,7 +1784,7 @@ discard block |
||
| 1784 | 1784 | 'required' => true, |
| 1785 | 1785 | ), |
| 1786 | 1786 | ), |
| 1787 | - ),'list' => array( |
|
| 1787 | + ), 'list' => array( |
|
| 1788 | 1788 | 'path' => 'management/accounts/{accountId}/webproperties', |
| 1789 | 1789 | 'httpMethod' => 'GET', |
| 1790 | 1790 | 'parameters' => array( |
@@ -1802,7 +1802,7 @@ discard block |
||
| 1802 | 1802 | 'type' => 'integer', |
| 1803 | 1803 | ), |
| 1804 | 1804 | ), |
| 1805 | - ),'patch' => array( |
|
| 1805 | + ), 'patch' => array( |
|
| 1806 | 1806 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
| 1807 | 1807 | 'httpMethod' => 'PATCH', |
| 1808 | 1808 | 'parameters' => array( |
@@ -1817,7 +1817,7 @@ discard block |
||
| 1817 | 1817 | 'required' => true, |
| 1818 | 1818 | ), |
| 1819 | 1819 | ), |
| 1820 | - ),'update' => array( |
|
| 1820 | + ), 'update' => array( |
|
| 1821 | 1821 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}', |
| 1822 | 1822 | 'httpMethod' => 'PUT', |
| 1823 | 1823 | 'parameters' => array( |
@@ -1862,7 +1862,7 @@ discard block |
||
| 1862 | 1862 | 'required' => true, |
| 1863 | 1863 | ), |
| 1864 | 1864 | ), |
| 1865 | - ),'insert' => array( |
|
| 1865 | + ), 'insert' => array( |
|
| 1866 | 1866 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
| 1867 | 1867 | 'httpMethod' => 'POST', |
| 1868 | 1868 | 'parameters' => array( |
@@ -1877,7 +1877,7 @@ discard block |
||
| 1877 | 1877 | 'required' => true, |
| 1878 | 1878 | ), |
| 1879 | 1879 | ), |
| 1880 | - ),'list' => array( |
|
| 1880 | + ), 'list' => array( |
|
| 1881 | 1881 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks', |
| 1882 | 1882 | 'httpMethod' => 'GET', |
| 1883 | 1883 | 'parameters' => array( |
@@ -1900,7 +1900,7 @@ discard block |
||
| 1900 | 1900 | 'type' => 'integer', |
| 1901 | 1901 | ), |
| 1902 | 1902 | ), |
| 1903 | - ),'update' => array( |
|
| 1903 | + ), 'update' => array( |
|
| 1904 | 1904 | 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}', |
| 1905 | 1905 | 'httpMethod' => 'PUT', |
| 1906 | 1906 | 'parameters' => array( |