columns = $columns; } /** * @return ChoiceQuestion */ public function getColumns() { return $this->columns; } /** * If `true`, the questions are randomly ordered. In other words, the rows * appear in a different order for every respondent. * * @param bool $shuffleQuestions */ public function setShuffleQuestions($shuffleQuestions) { $this->shuffleQuestions = $shuffleQuestions; } /** * @return bool */ public function getShuffleQuestions() { return $this->shuffleQuestions; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Grid::class, 'Google_Service_Forms_Grid');