Source code for aiogram.types.chat_boost_removed

from __future__ import annotations

from typing import TYPE_CHECKING, Any, Union

from .base import TelegramObject
from .custom import DateTime

if TYPE_CHECKING:
    from .chat import Chat
    from .chat_boost_source_gift_code import ChatBoostSourceGiftCode
    from .chat_boost_source_giveaway import ChatBoostSourceGiveaway
    from .chat_boost_source_premium import ChatBoostSourcePremium


[docs] class ChatBoostRemoved(TelegramObject): """ This object represents a boost removed from a chat. Source: https://core.telegram.org/bots/api#chatboostremoved """ chat: Chat """Chat which was boosted""" boost_id: str """Unique identifier of the boost""" remove_date: DateTime """Point in time (Unix timestamp) when the boost was removed""" source: Union[ChatBoostSourcePremium, ChatBoostSourceGiftCode, ChatBoostSourceGiveaway] """Source of the removed boost""" if TYPE_CHECKING: # DO NOT EDIT MANUALLY!!! # This section was auto-generated via `butcher` def __init__( __pydantic__self__, *, chat: Chat, boost_id: str, remove_date: DateTime, source: Union[ ChatBoostSourcePremium, ChatBoostSourceGiftCode, ChatBoostSourceGiveaway ], **__pydantic_kwargs: Any, ) -> None: # DO NOT EDIT MANUALLY!!! # This method was auto-generated via `butcher` # Is needed only for type checking and IDE support without any additional plugins super().__init__( chat=chat, boost_id=boost_id, remove_date=remove_date, source=source, **__pydantic_kwargs, )