WebhookInfo

This commit is contained in:
RustemB 2019-09-03 22:37:18 +05:00
parent 9f8396f752
commit 8b39c5fb68

View file

@ -0,0 +1,24 @@
use serde::Deserialize;
/// Contains information about the current status of a webhook.
#[derive(Debug, Deserialize, Hash, PartialEq, Eq)]
pub struct WebhookInfo {
/// Webhook URL, may be empty if webhook is not set up
pub url: String,
/// True, if a custom certificate was provided for webhook certificate checks
pub has_custom_certificate: bool,
/// Number of updates awaiting delivery
pub pending_update_count: u32,
/// Optional. Unix time for the most recent error that happened when trying
/// to deliver an update via webhook
pub last_error_date: Option<u64>,
/// Optional. Error message in human-readable format for the most recent
/// error that happened when trying to deliver an update via webhook
pub last_error_message: Option<String>,
/// Optional. Maximum allowed number of simultaneous HTTPS connections to
/// the webhook for update delivery
pub max_connections: Option<u32>,
/// Optional. A list of update types the bot is subscribed to. Defaults
/// to all update types
pub allowed_updates: Option<Vec<String>>,
}