Layer 220
BotVerifierSettings
Info about the current verifier bot.
constructor
botVerifierSettings#b0cd6617 flags:# can_modify_custom_description:flags.1?true icon:long company:string custom_description:flags.0?string = BotVerifierSettings;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| CanModifyCustomDescription | flags.1?true | Indicates whether the bot is allowed to set a custom description field for individual verified peers, different from the custom_description provided here. |
| Icon | long | Verification icon |
| Company | string | The name of the organization that provides the verification |
| CustomDescription | flags.0?string | An optional default description for the verification |
Returns
BotVerifierSettingsGogram Example
// Creating BotVerifierSettings constructor obj := &tg.BotVerifierSettings{ Icon: int64(0), Company: "...", // Optional fields: // CanModifyCustomDescription: true, // CustomDescription: "...", }