@bot.tree.command(name="help")
async def help(interaction: discord.Interaction, question: str):
embed = discord.Embed(title="New question", description=question, colour=discord.Colour.green())
channel = bot.get_channel(1281682614805332039)
await channel.send(embed=embed,view=QuestionButtons(userid=interaction.user.id,msgid=?))
await interaction.response.send_message(content="You send your question. Helpers will answer on it soon",ephemeral=True)
I need to get the message id in view named QuestionButtons. How i can do it?