[docs]classReadBusinessMessage(TelegramMethod[bool]):""" Marks incoming message as read on behalf of a business account. Requires the *can_read_messages* business bot right. Returns :code:`True` on success. Source: https://core.telegram.org/bots/api#readbusinessmessage """__returning__=bool__api_method__="readBusinessMessage"business_connection_id:str"""Unique identifier of the business connection on behalf of which to read the message"""chat_id:int"""Unique identifier of the chat in which the message was received. The chat must have been active in the last 24 hours."""message_id:int"""Unique identifier of the message to mark as read"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,business_connection_id:str,chat_id:int,message_id:int,**__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__(business_connection_id=business_connection_id,chat_id=chat_id,message_id=message_id,**__pydantic_kwargs,)