[docs]classChatBoost(TelegramObject):""" This object contains information about a chat boost. Source: https://core.telegram.org/bots/api#chatboost """boost_id:str"""Unique identifier of the boost"""add_date:DateTime"""Point in time (Unix timestamp) when the chat was boosted"""expiration_date:DateTime"""Point in time (Unix timestamp) when the boost will automatically expire, unless the booster's Telegram Premium subscription is prolonged"""source:Union[ChatBoostSourcePremium,ChatBoostSourceGiftCode,ChatBoostSourceGiveaway]"""Source of the added boost"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,boost_id:str,add_date:DateTime,expiration_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 pluginssuper().__init__(boost_id=boost_id,add_date=add_date,expiration_date=expiration_date,source=source,**__pydantic_kwargs,)