tgbot-cpp
Loading...
Searching...
No Matches
UsersShared.h
Go to the documentation of this file.
1#ifndef TGBOT_USERSSHARED_H
2#define TGBOT_USERSSHARED_H
3
5
6#include <cstdint>
7#include <memory>
8#include <vector>
9
10namespace TgBot {
11
18
19public:
20 typedef std::shared_ptr<UsersShared> Ptr;
21
25 std::int32_t requestId;
26
30 std::vector<SharedUser::Ptr> users;
31};
32}
33
34#endif //TGBOT_USERSSHARED_H
This object contains information about the users whose identifiers were shared with the bot using a K...
Definition UsersShared.h:17
std::vector< SharedUser::Ptr > users
Information about users shared with the bot.
Definition UsersShared.h:30
std::int32_t requestId
Identifier of the request.
Definition UsersShared.h:25
std::shared_ptr< UsersShared > Ptr
Definition UsersShared.h:20
Definition Api.h:40