account.updateBusinessIntro
Set or remove the Telegram Business introduction ».
func (c *Client) AccountUpdateBusinessIntro(ctx context.Context, request *AccountUpdateBusinessIntroRequest) (bool, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.AccountUpdateBusinessIntro(ctx, &tg.AccountUpdateBusinessIntroRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // bool
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Intro | InputBusinessIntro | — | Telegram Business introduction, to remove it call the method without setting this flag. |
Returns
bool
References
- Official documentation
- Generated Go reference
- TL definition:
account.updateBusinessIntro#a614d034