com.pengrad.telegrambot.model.request.InlineQueryResultCachedAudio Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.model.request;
/**
* Stas Parshin
* 06 May 2016
*/
public class InlineQueryResultCachedAudio extends InlineQueryResult {
private String audio_file_id;
public InlineQueryResultCachedAudio(String id, String fileId) {
super("audio", id);
this.audio_file_id = fileId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy