### What kind of feature are you missing? Where do you notice a shortcoming of PTB? I would like to have a shortcut method to delete a business message. ```python await update.business_message.delete() ``` This doesn't work and raises message to be deleted not found error. ### Describe the solution you'd like Currently [.delete()](https://github.com/python-telegram-bot/python-telegram-bot/blob/e9dd490b2ca43d3f4f288e579f64acfda01f221f/src/telegram/_message.py#L4151-L4180) method doesn't support `business_connection_id` like other shortcut methods support it. (like [.pin()](https://github.com/python-telegram-bot/python-telegram-bot/blob/e9dd490b2ca43d3f4f288e579f64acfda01f221f/src/telegram/_message.py#L4255), [.unpin()](https://github.com/python-telegram-bot/python-telegram-bot/blob/e9dd490b2ca43d3f4f288e579f64acfda01f221f/src/telegram/_message.py#L4295), [.reply_text()](https://github.com/python-telegram-bot/python-telegram-bot/blob/e9dd490b2ca43d3f4f288e579f64acfda01f221f/src/telegram/_message.py#L1868), [.reply_photo()](https://github.com/python-telegram-bot/python-telegram-bot/blob/e9dd490b2ca43d3f4f288e579f64acfda01f221f/src/telegram/_message.py#L2263) and other methods) ### Describe alternatives you've considered This can be working alternative to the issue. ```python await app.bot.delete_business_messages( business_connection_id=update.business_message.business_connection_id, message_ids=[update.business_message.id] ) ``` ### Additional context _No response_