assignment = $assignment; } /** * @return Assignment */ public function getAssignment() { return $this->assignment; } /** * @param User[] */ public function setMentionedUsers($mentionedUsers) { $this->mentionedUsers = $mentionedUsers; } /** * @return User[] */ public function getMentionedUsers() { return $this->mentionedUsers; } /** * @param Post */ public function setPost(Post $post) { $this->post = $post; } /** * @return Post */ public function getPost() { return $this->post; } /** * @param Suggestion */ public function setSuggestion(Suggestion $suggestion) { $this->suggestion = $suggestion; } /** * @return Suggestion */ public function getSuggestion() { return $this->suggestion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Comment::class, 'Google_Service_DriveActivity_Comment');