tgbot-cpp
Loading...
Searching...
No Matches
VideoChatParticipantsInvited.h
Go to the documentation of this file.
1#ifndef TGBOT_VIDEOCHATPARTICIPANTSINVITED_H
2#define TGBOT_VIDEOCHATPARTICIPANTSINVITED_H
3
4#include "tgbot/types/User.h"
5
6#include <memory>
7#include <vector>
8
9namespace TgBot {
10
17
18public:
19 typedef std::shared_ptr<VideoChatParticipantsInvited> Ptr;
20
24 std::vector<User::Ptr> users;
25};
26}
27
28#endif //TGBOT_VIDEOCHATPARTICIPANTSINVITED_H
This object represents a service message about new members invited to a video chat.
std::vector< User::Ptr > users
New members that were invited to the video chat.
std::shared_ptr< VideoChatParticipantsInvited > Ptr
Definition Api.h:39