BotVerifierSettings
- class pyrogram.raw.types.BotVerifierSettings
Info about the current verifier bot ».
Constructor of
BotVerifierSettings.- Details:
Layer:
223ID:
B0CD6617
- Parameters:
icon (
int64-bit) – Verification iconcompany (
str) – The name of the organization that provides the verificationcan_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_description →
true (optional)├── icon →
long├── company →
string└── custom_description →
string (optional)Example
BotVerifierSettings(
icon=0,
company="text",
)