account = $account; } /** * @return Account */ public function getAccount() { return $this->account; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param Profile */ public function setProfile(Profile $profile) { $this->profile = $profile; } /** * @return Profile */ public function getProfile() { return $this->profile; } /** * @param Webproperty */ public function setWebproperty(Webproperty $webproperty) { $this->webproperty = $webproperty; } /** * @return Webproperty */ public function getWebproperty() { return $this->webproperty; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AccountTreeResponse::class, 'Google_Service_Analytics_AccountTreeResponse');