From 418d0ddff6585477d2a81466e97453f44e71adae Mon Sep 17 00:00:00 2001 From: Oleg A Date: Thu, 5 Nov 2020 16:53:31 +0300 Subject: [PATCH] AIOG-T-68 field `ip_address` added to class `WebhookInfo` --- aiogram/types/webhook_info.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiogram/types/webhook_info.py b/aiogram/types/webhook_info.py index 995d3aaa..dc1a7cd9 100644 --- a/aiogram/types/webhook_info.py +++ b/aiogram/types/webhook_info.py @@ -13,6 +13,7 @@ class WebhookInfo(base.TelegramObject): url: base.String = fields.Field() has_custom_certificate: base.Boolean = fields.Field() pending_update_count: base.Integer = fields.Field() + ip_address: base.String = fields.Field() last_error_date: base.Integer = fields.Field() last_error_message: base.String = fields.Field() max_connections: base.Integer = fields.Field()