From 03a60014d4d5f2ffe87baa339dad3d8a28c6f7c1 Mon Sep 17 00:00:00 2001 From: Denis Date: Mon, 28 Jul 2025 01:14:25 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D1=8A=D0=B5=D0=BA=D1=82=20=D0=BE?= =?UTF-8?q?=D1=82=D0=B2=D0=B5=D1=82=D0=B0=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=BD=D1=8B=D1=85=20=D0=BF=D0=BE=D0=B4=D0=BF=D0=B8?= =?UTF-8?q?=D1=81=D0=BE=D0=BA=20Webhook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maxapi/methods/types/getted_subscriptions.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 maxapi/methods/types/getted_subscriptions.py diff --git a/maxapi/methods/types/getted_subscriptions.py b/maxapi/methods/types/getted_subscriptions.py new file mode 100644 index 0000000..1739f52 --- /dev/null +++ b/maxapi/methods/types/getted_subscriptions.py @@ -0,0 +1,16 @@ +from typing import List +from pydantic import BaseModel + +from ...types.subscription import Subscription + + +class GettedSubscriptions(BaseModel): + + """ + Ответ API с отправленным сообщением. + + Attributes: + message (Message): Объект отправленного сообщения. + """ + + subscriptions: List[Subscription] \ No newline at end of file