diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2018-06-05 19:06:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 19:06:23 +0300 |
commit | 1a90b5022d47bc0059214381b74db6fae9767cef (patch) | |
tree | f88e480700cb36f8acdcfdebcbac01328f16c98d /include/tgbot/net/HttpReqArg.h | |
parent | 381a1cd0d949db88abd0b28bc717a8690b93ccc0 (diff) | |
parent | 0f4e792a641527aa590a1a9e23bdaad2f16ab6bc (diff) |
Merge pull request #63 from JellyBrick/master
Bot API 2.2 (Game) update / Add optimization option
Diffstat (limited to 'include/tgbot/net/HttpReqArg.h')
-rw-r--r-- | include/tgbot/net/HttpReqArg.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/tgbot/net/HttpReqArg.h b/include/tgbot/net/HttpReqArg.h index 5aa60fd..7476366 100644 --- a/include/tgbot/net/HttpReqArg.h +++ b/include/tgbot/net/HttpReqArg.h @@ -32,7 +32,8 @@ namespace TgBot { /** - * This class represents argument in POST http requests. + * @brief This class represents argument in POST http requests. + * * @ingroup net */ class HttpReqArg { @@ -45,27 +46,27 @@ public: } /** - * Name of an argument. + * @brief Name of an argument. */ std::string name; /** - * Value of an argument. + * @brief Value of an argument. */ std::string value; /** - * Should be true if an argument value hold some file contents + * @brief Should be true if an argument value hold some file contents */ bool isFile = false; /** - * Mime type of an argument value. This field makes sense only if isFile is true. + * @brief Mime type of an argument value. This field makes sense only if isFile is true. */ std::string mimeType = "text/plain"; /** - * Should be set if an argument value hold some file contents + * @brief Should be set if an argument value hold some file contents */ std::string fileName; }; |