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