com.pengrad.telegrambot.response.SentWebAppMessageResponse 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.response;
/**
* Mirco Ianese
* 20 Apr 2022
*/
public class SentWebAppMessageResponse extends BaseResponse {
private String inline_message_id;
public String inlineMessageId() {
return inline_message_id;
}
@Override
public String toString() {
return "SentWebAppMessageResponse{" +
"inline_message_id=" + inline_message_id +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy