pro.zackpollard.telegrambot.api.chat.message.content.TextContent Maven / Gradle / Ivy
package pro.zackpollard.telegrambot.api.chat.message.content;
import pro.zackpollard.telegrambot.api.chat.message.content.type.MessageEntity;
import java.util.List;
/**
* @author Zack Pollard
*/
public interface TextContent extends Content {
String getContent();
List getEntities();
@Override
default ContentType getType() {
return ContentType.TEXT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy