tgbot-cpp
Loading...
Searching...
No Matches
MessageId.h
Go to the documentation of this file.
1#ifndef TGBOT_CPP_MESSAGEID_H
2#define TGBOT_CPP_MESSAGEID_H
3
4#include <memory>
5
6namespace TgBot {
7
13class MessageId {
14
15public:
16 typedef std::shared_ptr<MessageId> Ptr;
17
21 std::int32_t messageId;
22};
23}
24
25#endif //TGBOT_CPP_MESSAGEID_H
This object represents a unique message identifier.
Definition MessageId.h:13
std::int32_t messageId
Unique message identifier.
Definition MessageId.h:21
std::shared_ptr< MessageId > Ptr
Definition MessageId.h:16
Definition Api.h:39