blogId = $blogId; } /** * @return string */ public function getBlogId() { return $this->blogId; } /** * The container of posts in this blog. * * @param PageviewsCounts[] $counts */ public function setCounts($counts) { $this->counts = $counts; } /** * @return PageviewsCounts[] */ public function getCounts() { return $this->counts; } /** * The kind of this entry. Always blogger#page_views. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Pageviews::class, 'Google_Service_Blogger_Pageviews');