authorName = $authorName;
}
/**
* @return string
*/
public function getAuthorName()
{
return $this->authorName;
}
/**
* @param Comment[]
*/
public function setComments($comments)
{
$this->comments = $comments;
}
/**
* @return Comment[]
*/
public function getComments()
{
return $this->comments;
}
/**
* @param string
*/
public function setReviewId($reviewId)
{
$this->reviewId = $reviewId;
}
/**
* @return string
*/
public function getReviewId()
{
return $this->reviewId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Review::class, 'Google_Service_AndroidPublisher_Review');