blob: 51223e3e2d22cc823cf81e7e23c044afd57f4087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef TGBOT_VIDEOCHATSCHEDULED_H
#define TGBOT_VIDEOCHATSCHEDULED_H
#include <cstdint>
#include <memory>
namespace TgBot {
/**
* @brief This object represents a service message about a video chat scheduled in the chat.
*
* @ingroup types
*/
class VideoChatScheduled {
public:
typedef std::shared_ptr<VideoChatScheduled> Ptr;
/**
* @brief Point in time (Unix timestamp) when the video chat is supposed to be started by a chat administrator
*/
std::int32_t startDate;
};
}
#endif //TGBOT_VIDEOCHATSCHEDULED_H
|