Skip to main content

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

NameTypeRequiredDescription
IntroInputBusinessIntroTelegram Business introduction, to remove it call the method without setting this flag.

Returns

bool

References