From c8d40dccabaaa406faed6c0797a92bac811c9d0f Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Tue, 5 Jun 2018 19:07:27 +0300 Subject: Update docs --- docs/_chosen_inline_result_8h_source.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'docs/_chosen_inline_result_8h_source.html') diff --git a/docs/_chosen_inline_result_8h_source.html b/docs/_chosen_inline_result_8h_source.html index 84ca132..dab4a97 100644 --- a/docs/_chosen_inline_result_8h_source.html +++ b/docs/_chosen_inline_result_8h_source.html @@ -83,25 +83,25 @@ $(document).ready(function(){initNavTree('_chosen_inline_result_8h_source.html',
ChosenInlineResult.h
-Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 27/03/16.
3 //
4 
5 #ifndef TGBOT_CHOSENINLINERESULT_H
6 #define TGBOT_CHOSENINLINERESULT_H
7 
8 #include <string>
9 #include <memory>
10 
11 #include "tgbot/types/User.h"
12 #include "tgbot/types/Location.h"
13 
14 namespace TgBot {
15 
21 public:
22  typedef std::shared_ptr<ChosenInlineResult> Ptr;
23 
27  std::string resultId;
28 
33 
38 
44  std::string inlineMessageId;
45 
49  std::string query;
50 };
51 }
52 
53 #endif //TGBOT_CHOSENINLINERESULT_H
- - -
Definition: Api.h:46
-
std::shared_ptr< Location > Ptr
Definition: Location.h:37
-
std::shared_ptr< ChosenInlineResult > Ptr
- - +Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 27/03/16.
3 //
4 
5 #ifndef TGBOT_CHOSENINLINERESULT_H
6 #define TGBOT_CHOSENINLINERESULT_H
7 
8 #include <string>
9 #include <memory>
10 
11 #include "tgbot/types/User.h"
12 #include "tgbot/types/Location.h"
13 
14 namespace TgBot {
15 
22 public:
23  typedef std::shared_ptr<ChosenInlineResult> Ptr;
24 
28  std::string resultId;
29 
34 
39 
46  std::string inlineMessageId;
47 
51  std::string query;
52 };
53 }
54 
55 #endif //TGBOT_CHOSENINLINERESULT_H
This object represents a result of an inline query that was chosen by the user and sent to their chat...
+
User::Ptr from
The user that chose the result.
+
std::string query
The query that was used to obtain the result.
+
Definition: Api.h:47
+
std::shared_ptr< Location > Ptr
Definition: Location.h:38
+
std::shared_ptr< ChosenInlineResult > Ptr
+
std::string inlineMessageId
Optional. Identifier of the sent inline message.
+
std::string resultId
The unique identifier for the result that was chosen.
- +
Location::Ptr location
Optional. Sender location, only for bots that require user location.
-
std::shared_ptr< User > Ptr
Definition: User.h:38
+
std::shared_ptr< User > Ptr
Definition: User.h:39