pro.zackpollard.telegrambot.api.internal.chat.message.content.VoiceContentImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtelegram-botapi Show documentation
Show all versions of jtelegram-botapi Show documentation
The Java Telegram Bot API is a wrapper for the Telegram HTTP Bot API
package pro.zackpollard.telegrambot.api.internal.chat.message.content;
import org.json.JSONObject;
import pro.zackpollard.telegrambot.api.chat.message.content.VoiceContent;
import pro.zackpollard.telegrambot.api.chat.message.content.type.Voice;
import pro.zackpollard.telegrambot.api.internal.chat.message.content.type.VoiceImpl;
/**
* @author Zack Pollard
*/
public class VoiceContentImpl implements VoiceContent {
private final Voice content;
private VoiceContentImpl(JSONObject jsonObject) {
this.content = VoiceImpl.createVoice(jsonObject);
}
public static VoiceContent createVoiceContent(JSONObject jsonObject) {
return jsonObject != null ? new VoiceContentImpl(jsonObject) : null;
}
@Override
public Voice getContent() {
return content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy