id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setStarred($starred) { $this->starred = $starred; } /** * @return bool */ public function getStarred() { return $this->starred; } /** * @param WebPropertySummary[] */ public function setWebProperties($webProperties) { $this->webProperties = $webProperties; } /** * @return WebPropertySummary[] */ public function getWebProperties() { return $this->webProperties; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountSummary::class, 'Google_Service_Analytics_AccountSummary');