net.mossol.bot.service.MenuServiceHandler 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.service;
import net.mossol.bot.model.LocationInfo;
import net.mossol.bot.model.MenuType;
import java.util.List;
/**
* Created by Amos.Doan.Mac on 2017. 12. 6..
*/
public interface MenuServiceHandler {
String getMenu(MenuType type);
LocationInfo selectMenu(MenuType type);
String addMenu(List food, MenuType type);
String removeMenu(List food, MenuType type);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy