blob: 2f54e0040013705a089a3e5b58c0d893191b3472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "tgbot/types/InputTextMessageContent.h"
#include "tgbot/types/InputLocationMessageContent.h"
#include "tgbot/types/InputVenueMessageContent.h"
#include "tgbot/types/InputContactMessageContent.h"
#include "tgbot/types/InputInvoiceMessageContent.h"
#include <string>
using namespace TgBot;
const std::string InputTextMessageContent::TYPE = "text";
const std::string InputLocationMessageContent::TYPE = "location";
const std::string InputVenueMessageContent::TYPE = "venue";
const std::string InputContactMessageContent::TYPE = "contact";
const std::string InputInvoiceMessageContent::TYPE = "invoice";
|