From 3e5a28fa0a1ba2d461271f22399476c241bcffe3 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Fri, 22 Jun 2018 22:15:42 +0900 Subject: Regenerate docs --- docs/_webhook_info_8h_source.html | 132 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 docs/_webhook_info_8h_source.html (limited to 'docs/_webhook_info_8h_source.html') diff --git a/docs/_webhook_info_8h_source.html b/docs/_webhook_info_8h_source.html new file mode 100644 index 0000000..15affac --- /dev/null +++ b/docs/_webhook_info_8h_source.html @@ -0,0 +1,132 @@ + + + + + + +tgbot-cpp: include/tgbot/types/WebhookInfo.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
tgbot-cpp +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
WebhookInfo.h
+
+
+Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_WEBHOOKINFO_H
6 #define TGBOT_WEBHOOKINFO_H
7 
8 #include <string>
9 #include <vector>
10 #include <memory>
11 
12 namespace TgBot {
13 
19 class WebhookInfo {
20 public:
21  typedef std::shared_ptr<WebhookInfo> Ptr;
22 
26  std::string url;
27 
32 
37 
41  int32_t lastErrorDate;
42 
46  std::string lastErrorMessage;
47 
51  int32_t maxConnections;
52 
56  std::vector<std::string> allowedUpdates;
57 };
58 }
59 
60 #endif //TGBOT_WEBHOOKINFO_H
Definition: Api.h:49
+
Contains information about the current status of a webhook.
Definition: WebhookInfo.h:19
+
bool hasCustomCertificate
True, if a custom certificate was provided for webhook certificate checks.
Definition: WebhookInfo.h:31
+
std::string lastErrorMessage
Optional. Error message in human - readable format for the most recent error that happened when tryin...
Definition: WebhookInfo.h:46
+
int32_t lastErrorDate
Optional. Unix time for the most recent error that happened when trying to deliver an update via webh...
Definition: WebhookInfo.h:41
+
std::shared_ptr< WebhookInfo > Ptr
Definition: WebhookInfo.h:21
+
int32_t pendingUpdateCount
Number of updates awaiting delivery.
Definition: WebhookInfo.h:36
+
std::string url
Webhook URL, may be empty if webhook is not set up.
Definition: WebhookInfo.h:26
+
int32_t maxConnections
Optional. Maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery...
Definition: WebhookInfo.h:51
+
std::vector< std::string > allowedUpdates
Optional. A list of update types the bot is subscribed to. Defaults to all update types...
Definition: WebhookInfo.h:56
+
+
+ + + + -- cgit v1.2.3