какой промпт гпт сделать, чтобы он получал входящие сообщения с аккаунта человека который добавил его в телеграмм бизнес
опиши ему вид хендлера: @router.business_message() async def business_handler(conn: BusinessConnection): pass Код @router.business_message() async def business_handler(conn: BusinessConnection): pass и как выглядит объект BusinessConnection: class BusinessConnection(TelegramObject): """ Describes the connection of the bot with a business account. """ id: str """Unique identifier of the business connection""" user: User """Business account user that created the business connection""" user_chat_id: int """Identifier of a private chat with the user who created the business connection. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier.""" date: DateTime """Date the connection was established in Unix time""" is_enabled: bool """True, if the connection is active""" rights: Optional[BusinessBotRights] = None """*Optional*. Rights of the business bot""" can_reply: Optional[bool] = Field(None, json_schema_extra={"deprecated": True}) """True, if the bot can act on behalf of the business account in chats that were active in the last 24 hours Код class BusinessConnection(TelegramObject): """ Describes the connection of the bot with a business account. """ id: str """Unique identifier of the business connection""" user: User """Business account user that created the business connection""" user_chat_id: int """Identifier of a private chat with the user who created the business connection. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier.""" date: DateTime """Date the connection was established in Unix time""" is_enabled: bool """True, if the connection is active""" rights: Optional[BusinessBotRights] = None """*Optional*. Rights of the business bot""" can_reply: Optional[bool] = Field(None, json_schema_extra={"deprecated": True}) """True, if the bot can act on behalf of the business account in chats that were active in the last 24 hours