I did my best but I'm unable to find a resource and my current code sends an anonymous poll but I want to send 'Multiple Answer poll' so one user can choose more than one option.
also, how do the bot will know which option is pressed?
await bot.send_message(event.chat.id, file=InputMediaPoll(
poll=Poll(id=event.chat.id, question="This is a test poll",answers=[PollAnswer('Option 1', b'1'), PollAnswer('Option 2', b'2')])))