pro.zackpollard.telegrambot.api.chat.message.content.PhotoContent Maven / Gradle / Ivy
package pro.zackpollard.telegrambot.api.chat.message.content;
import pro.zackpollard.telegrambot.api.chat.message.content.type.PhotoSize;
/**
* @author Zack Pollard
*/
public interface PhotoContent extends Content, Captionable {
PhotoSize[] getContent();
@Override
default ContentType getType() {
return ContentType.PHOTO;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy