net.mossol.bot.connection.RetrofitConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of line_bot_mossol-lib Show documentation
Show all versions of line_bot_mossol-lib Show documentation
Line Bot Mossol (line_bot_mossol-lib)
package net.mossol.bot.connection;
import net.mossol.bot.model.LinePushRequest;
import net.mossol.bot.model.LineReplyRequest;
public interface RetrofitConnection {
void sendReply(LineReplyRequest request);
void leaveRoom(LineReplyRequest request, String roomId);
void leaveGroup(LineReplyRequest request, String groupId);
void sendPush(LinePushRequest request);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy