folderId = $folderId; } /** * @return string */ public function getFolderId() { return $this->folderId; } /** * @param string */ public function setMaxFileSize($maxFileSize) { $this->maxFileSize = $maxFileSize; } /** * @return string */ public function getMaxFileSize() { return $this->maxFileSize; } /** * @param int */ public function setMaxFiles($maxFiles) { $this->maxFiles = $maxFiles; } /** * @return int */ public function getMaxFiles() { return $this->maxFiles; } /** * @param string[] */ public function setTypes($types) { $this->types = $types; } /** * @return string[] */ public function getTypes() { return $this->types; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FileUploadQuestion::class, 'Google_Service_Forms_FileUploadQuestion');