Layer 227
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
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

Gogram Example

// Creating BotVerifierSettingsObj constructor
obj := &tg.BotVerifierSettingsObj{
    CanModifyCustomDescription: nil,
    Icon: int64(1234567890),
    Company: "Hello, World!",
    CustomDescription: "Hello, World!",
}