'How to know if a bot on my server is verified or not?

I would like to know if it is possible to know if a bot on my server is verified or not, with a command (using python), I do not find good information in forums.

enter image description here

@bot.command
async def verify(ctx, bot_name):
  ???
  pass

or

@bot.event
async def on_member_join(member):
  ???
  pass

does anyone know if there is any way to know through a command or event?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source