[docs]classUniqueGift(TelegramObject):""" This object describes a unique gift that was upgraded from a regular gift. Source: https://core.telegram.org/bots/api#uniquegift """gift_id:str"""Identifier of the regular gift from which the gift was upgraded"""base_name:str"""Human-readable name of the regular gift from which this unique gift was upgraded"""name:str"""Unique name of the gift. This name can be used in :code:`https://t.me/nft/...` links and story areas"""number:int"""Unique number of the upgraded gift among gifts upgraded from the same regular gift"""model:UniqueGiftModel"""Model of the gift"""symbol:UniqueGiftSymbol"""Symbol of the gift"""backdrop:UniqueGiftBackdrop"""Backdrop of the gift"""is_premium:bool|None=None"""*Optional*. :code:`True`, if the original regular gift was exclusively purchaseable by Telegram Premium subscribers"""is_from_blockchain:bool|None=None"""*Optional*. :code:`True`, if the gift is assigned from the TON blockchain and can't be resold or transferred in Telegram"""colors:UniqueGiftColors|None=None"""*Optional*. The color scheme that can be used by the gift's owner for the chat's name, replies to messages and link previews; for business account gifts and gifts that are currently on sale only"""publisher_chat:Chat|None=None"""*Optional*. Information about the chat that published the gift"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,gift_id:str,base_name:str,name:str,number:int,model:UniqueGiftModel,symbol:UniqueGiftSymbol,backdrop:UniqueGiftBackdrop,is_premium:bool|None=None,is_from_blockchain:bool|None=None,colors:UniqueGiftColors|None=None,publisher_chat:Chat|None=None,**__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__(gift_id=gift_id,base_name=base_name,name=name,number=number,model=model,symbol=symbol,backdrop=backdrop,is_premium=is_premium,is_from_blockchain=is_from_blockchain,colors=colors,publisher_chat=publisher_chat,**__pydantic_kwargs,)