tgbot-cpp
Loading...
Searching...
No Matches
BusinessMessagesDeleted.h
Go to the documentation of this file.
1#ifndef TGBOT_BUSINESSMESSAGESDELETED_H
2#define TGBOT_BUSINESSMESSAGESDELETED_H
3
4#include "tgbot/types/Chat.h"
5
6#include <cstdint>
7#include <memory>
8#include <string>
9#include <vector>
10
11namespace TgBot {
12
19
20public:
21 typedef std::shared_ptr<BusinessMessagesDeleted> Ptr;
22
27
34
38 std::vector<std::int32_t> messageIds;
39};
40}
41
42#endif //TGBOT_BUSINESSMESSAGESDELETED_H
This object is received when messages are deleted from a connected business account.
std::string businessConnectionId
Unique identifier of the business connection.
std::vector< std::int32_t > messageIds
A JSON-serialized list of identifiers of deleted messages in the chat of the business account.
Chat::Ptr chat
Information about a chat in the business account.
std::shared_ptr< BusinessMessagesDeleted > Ptr
std::shared_ptr< Chat > Ptr
Definition Chat.h:31
Definition Api.h:40