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

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

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

import java.io.IOException;
import java.util.Optional;

import edu.ksu.canvas.model.Conversation;
import edu.ksu.canvas.requestOptions.GetSingleConversationOptions;

public interface ConversationReader extends CanvasReader {

    /**
     * Get a single conversation from Canvas
     * @param options API options for the conversation call
     * @return The requested conversation, if it exists
     * @throws IOException if there is an error communicating with Canvas
     */
    public Optional getSingleConversation(GetSingleConversationOptions options) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy