blogId = $blogId; return $this; } /** * Get blogId. * * @return int */ public function getBlogId() { return $this->blogId; } /** * Set ratingType. * * @return CBlogRating */ public function setRatingType(string $ratingType) { $this->ratingType = $ratingType; return $this; } /** * Get ratingType. * * @return string */ public function getRatingType() { return $this->ratingType; } /** * Set itemId. * * @return CBlogRating */ public function setItemId(int $itemId) { $this->itemId = $itemId; return $this; } /** * Get itemId. * * @return int */ public function getItemId() { return $this->itemId; } /** * Set userId. * * @return CBlogRating */ public function setUserId(int $userId) { $this->userId = $userId; return $this; } /** * Get userId. * * @return int */ public function getUserId() { return $this->userId; } /** * Set rating. * * @return CBlogRating */ public function setRating(int $rating) { $this->rating = $rating; return $this; } /** * Get rating. * * @return int */ public function getRating() { return $this->rating; } /** * Set ratingId. * * @return CBlogRating */ public function setRatingId(int $ratingId) { $this->ratingId = $ratingId; return $this; } /** * Get ratingId. * * @return int */ public function getRatingId() { return $this->ratingId; } /** * Set cId. * * @return CBlogRating */ public function setCId(int $cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } }