tgbot-cpp
Loading...
Searching...
No Matches
HttpFormField.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <variant>
5
6namespace TgBot {
7
11struct HttpFile {
12 std::string data;
13 std::string mimeType;
14 std::string fileName;
15};
16
21 std::string name;
22 std::variant<std::string, HttpFile> value;
23};
24
25} // namespace TgBot
Definition Api.h:17
std::string data
std::string mimeType
std::string fileName
std::variant< std::string, HttpFile > value