BotVerifierSettings

class pyrogram.raw.base.BotVerifierSettings

Info about the current verifier bot ».

Constructors:

This base type has 1 constructor available.

BotVerifierSettings

Info about the current verifier bot ».

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(
    can_modify_custom_description=None,
    icon=0,
    company="text",
    custom_description="text",
)