All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.ksu.canvas.interfaces.QuizQuestionReader Maven / Gradle / Ivy

The newest version!
package edu.ksu.canvas.interfaces;

import java.io.IOException;
import java.util.List;

import edu.ksu.canvas.model.assignment.QuizQuestion;
import edu.ksu.canvas.requestOptions.GetQuizQuestionsOptions;

public interface QuizQuestionReader extends CanvasReader {
    /**
     * Retrieve a list of quiz questions from Canvas by its course and quiz Canvas ID numbers
     * @param options The API options associated with this request
     * @return List of quizzes questions in the course with the course ID
     * @throws IOException When there is an error communicating with Canvas
     */
    List getQuizQuestions(GetQuizQuestionsOptions options) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy