displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param CommentAuthorImage */ public function setImage(CommentAuthorImage $image) { $this->image = $image; } /** * @return CommentAuthorImage */ public function getImage() { return $this->image; } /** * @param string */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CommentAuthor::class, 'Google_Service_Blogger_CommentAuthor');