qTbot 0.89.ee6949a
qTbot is base back end library for your c++ Qt projects.
|
The TelegramDocument class This is implementation of the documents objects of telegram. More...
#include <telegramdocument.h>
Public Member Functions | |
TelegramDocument () | |
TelegramDocument (const QJsonObject &jsonObject) | |
Constructs a Document object from a JSON object. | |
QString | fileName () const |
Returns the file name of the document. | |
QString | mimeType () const |
Returns the MIME type of the document. | |
Public Member Functions inherited from qTbot::TelegramFile | |
TelegramFile () | |
TelegramFile (const QJsonObject &jsonObject) | |
Constructs a Photo object from a JSON object. | |
QString | fileId () const |
Returns the file ID of the photo. | |
QString | fileUniqueId () const |
Returns the unique ID of the photo. | |
int | fileSize () const |
Returns the file size of the photo. | |
QString | takePath () |
Returns the file path to get from web. | |
Public Member Functions inherited from qTbot::IJsonBasedObject | |
IJsonBasedObject () | |
IJsonBasedObject (const QJsonObject &newRawJson) | |
const QJsonObject & | rawJson () const |
rawJson Telegram use rest api with json objects. So all received messages will be parsed in to jsobject. | |
virtual void | setRawJson (const QJsonObject &newRawJson) |
setRawJson this method convert jsobject into telegram message. | |
The TelegramDocument class This is implementation of the documents objects of telegram.
Definition at line 19 of file telegramdocument.h.
qTbot::TelegramDocument::TelegramDocument | ( | ) |
Definition at line 12 of file telegramdocument.cpp.
qTbot::TelegramDocument::TelegramDocument | ( | const QJsonObject & | jsonObject | ) |
Constructs a Document object from a JSON object.
jsonObject | The JSON object containing document data. |
Definition at line 17 of file telegramdocument.cpp.
QString qTbot::TelegramDocument::fileName | ( | ) | const |
Returns the file name of the document.
Definition at line 19 of file telegramdocument.cpp.
QString qTbot::TelegramDocument::mimeType | ( | ) | const |
Returns the MIME type of the document.
Definition at line 23 of file telegramdocument.cpp.