[docs]classDeclineSuggestedPost(TelegramMethod[bool]):""" Use this method to decline a suggested post in a direct messages chat. The bot must have the 'can_manage_direct_messages' administrator right in the corresponding channel chat. Returns :code:`True` on success. Source: https://core.telegram.org/bots/api#declinesuggestedpost """__returning__=bool__api_method__="declineSuggestedPost"chat_id:int"""Unique identifier for the target direct messages chat"""message_id:int"""Identifier of a suggested post message to decline"""comment:Optional[str]=None"""Comment for the creator of the suggested post; 0-128 characters"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,chat_id:int,message_id:int,comment:Optional[str]=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__(chat_id=chat_id,message_id=message_id,comment=comment,**__pydantic_kwargs)