qTbot 0.87.9547b0c
qTbot is base back end library for your c++ Qt projects.
telegraminlinekeyboardcallback.cpp
Go to the documentation of this file.
2
3namespace qTbot {
4
9
11 IJsonBasedObject(jsonObject) {
12
13}
14
15unsigned long long TelegramInlineKeyBoardCallBack::fromId() const {
16 return rawJson()["from"]["id"].toInteger();
17}
18
20 return rawJson()["from"]["is_bot"].toBool();
21}
22
24 return rawJson()["from"]["first_name"].toString();
25}
26
28 return rawJson()["from"]["last_name"].toString();
29}
30
32 return rawJson()["from"]["username"].toString();
33}
34
36 return rawJson()["from"]["language_code"].toString();
37}
38
40 return rawJson()["data"].toString();
41}
42
44 return rawJson()["message"]["message_id"].toVariant();
45}
46}
The IJsonBasedObject class This is base interface for all json base objects.
const QJsonObject & rawJson() const
rawJson Telegram use rest api with json objects. So all received messages will be parsed in to jsobje...
unsigned long long fromId() const
fromId returns the sender's ID.
QString callBackData() const
callBackData line of the call back that was be clicked.
QString lastName() const
lastName returns the sender's last name.
bool isBot() const
isBot checks if the sender is a bot.
QString languageCode() const
languageCode returns the sender's language code.
QVariant messageId() const
messageId id of the message when was be presed button.
QString username() const
username returns the sender's username.
QString firstName() const
firstName returns the sender's first name.