mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
webhookinfo.py: add new parameters
This commit is contained in:
parent
fc9f36d4db
commit
c2c93f5d51
1 changed files with 13 additions and 3 deletions
|
@ -40,13 +40,23 @@ class WebhookInfo(TelegramObject):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, url, has_custom_certificate, pending_update_count, **kwargs):
|
def __init__(self,
|
||||||
|
url,
|
||||||
|
has_custom_certificate=None,
|
||||||
|
pending_update_count=None,
|
||||||
|
last_error_date=None,
|
||||||
|
last_error_message=None,
|
||||||
|
max_connections=None,
|
||||||
|
allowed_updates=None,
|
||||||
|
**kwargs):
|
||||||
# Required
|
# Required
|
||||||
self.url = url
|
self.url = url
|
||||||
self.has_custom_certificate = has_custom_certificate
|
self.has_custom_certificate = has_custom_certificate
|
||||||
self.pending_update_count = pending_update_count
|
self.pending_update_count = pending_update_count
|
||||||
self.last_error_date = kwargs.get('last_error_date', '')
|
self.last_error_date = last_error_date
|
||||||
self.last_error_message = kwargs.get('last_error_message', '')
|
self.last_error_message = last_error_message
|
||||||
|
self.max_connections = max_connections
|
||||||
|
self.allowed_updates = allowed_updates
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def de_json(data, bot):
|
def de_json(data, bot):
|
||||||
|
|
Loading…
Reference in a new issue