blogId = $blogId; } /** * @return string */ public function getBlogId() { return $this->blogId; } /** * @param bool */ public function setHasEditAccess($hasEditAccess) { $this->hasEditAccess = $hasEditAccess; } /** * @return bool */ public function getHasEditAccess() { return $this->hasEditAccess; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setPostId($postId) { $this->postId = $postId; } /** * @return string */ public function getPostId() { return $this->postId; } /** * @param string */ public function setUserId($userId) { $this->userId = $userId; } /** * @return string */ public function getUserId() { return $this->userId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PostPerUserInfo::class, 'Google_Service_Blogger_PostPerUserInfo');