BotVerifierSettings

class pyrogram.raw.types.BotVerifierSettings

Info about the current verifier bot ».

Constructor of BotVerifierSettings.

Details:
  • Layer: 223

  • ID: B0CD6617

Parameters:
  • icon (int 64-bit) – Verification icon

  • company (str) – The name of the organization that provides the verification

  • can_modify_custom_description (bool, optional) – Indicates whether the bot is allowed to set a custom description field for individual verified peers, different from the custom_description provided here.

  • custom_description (str, optional) – An optional default description for the verification

TL Schema

botVerifierSettings#b0cd6617
flags:#
can_modify_custom_description:flags.1?true
icon:long
company:string
custom_description:flags.0?string

= BotVerifierSettings

Parameter Tree

BotVerifierSettings
├── can_modify_custom_descriptiontrue (optional)
├── iconlong
├── companystring
└── custom_descriptionstring (optional)

Example

BotVerifierSettings(
    icon=0,
    company="text",
)