tgbot-cpp
Loading...
Searching...
No Matches
InputSticker.h
Go to the documentation of this file.
1#ifndef TGBOT_INPUTSTICKER_H
2#define TGBOT_INPUTSTICKER_H
3
5
6#include <memory>
7#include <string>
8#include <vector>
9
10namespace TgBot {
11
18
19public:
20 typedef std::shared_ptr<InputSticker> Ptr;
21
29 std::string sticker;
30
34 std::string format;
35
39 std::vector<std::string> emojiList;
40
47
53 std::vector<std::string> keywords;
54};
55}
56
57#endif //TGBOT_INPUTSTICKER_H
This object describes a sticker to be added to a sticker set.
std::string format
Format of the added sticker, must be one of “static” for a .WEBP or .PNG image, “animated” for a ....
std::vector< std::string > emojiList
List of 1-20 emoji associated with the sticker.
std::vector< std::string > keywords
Optional. List of 0-20 search keywords for the sticker with total length of up to 64 characters.
MaskPosition::Ptr maskPosition
Optional. Position where the mask should be placed on faces.
std::shared_ptr< InputSticker > Ptr
std::string sticker
The added sticker.
std::shared_ptr< MaskPosition > Ptr
Definition Api.h:40