fileUploadAnswers = $fileUploadAnswers; } /** * @return FileUploadAnswers */ public function getFileUploadAnswers() { return $this->fileUploadAnswers; } /** * @param Grade */ public function setGrade(Grade $grade) { $this->grade = $grade; } /** * @return Grade */ public function getGrade() { return $this->grade; } /** * @param string */ public function setQuestionId($questionId) { $this->questionId = $questionId; } /** * @return string */ public function getQuestionId() { return $this->questionId; } /** * @param TextAnswers */ public function setTextAnswers(TextAnswers $textAnswers) { $this->textAnswers = $textAnswers; } /** * @return TextAnswers */ public function getTextAnswers() { return $this->textAnswers; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Answer::class, 'Google_Service_Forms_Answer');