za.co.knonchalant.candogram.handlers.IUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CanDoGram Show documentation
Show all versions of CanDoGram Show documentation
Wraps Telegram and Discord bot API, so you can code once and deploy multi.
The newest version!
package za.co.knonchalant.candogram.handlers;
import za.co.knonchalant.candogram.domain.Location;
public interface IUpdate {
public String getText();
public User getUser();
public User getOtherUser();
public long getId();
public String getInlineId();
public long getMessageId();
public long getChatId();
public String getTitle();
public Location getLocation();
public boolean isInline();
boolean skip();
}