tgbot-cpp
Loading...
Searching...
No Matches
ChatShared.h
Go to the documentation of this file.
1#ifndef TGBOT_CHATSHARED_H
2#define TGBOT_CHATSHARED_H
3
4#include <cstdint>
5#include <memory>
6
7namespace TgBot {
8
15
16public:
17 typedef std::shared_ptr<ChatShared> Ptr;
18
22 std::int32_t requestId;
23
32 std::int64_t userId;
33};
34}
35
36#endif //TGBOT_CHATSHARED_H
This object contains information about the chat whose identifier was shared with the bot using a Keyb...
Definition ChatShared.h:14
std::int32_t requestId
Identifier of the request.
Definition ChatShared.h:22
std::shared_ptr< ChatShared > Ptr
Definition ChatShared.h:17
std::int64_t userId
Identifier of the shared chat.
Definition ChatShared.h:32
Definition Api.h:39