Skip to main content

help.getSupportName

Get localized name of the telegram support user

func (c *Client) HelpGetSupportName(ctx context.Context) (*HelpSupportName, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.HelpGetSupportName(ctx)
if err != nil {
return err
}
_ = res // *HelpSupportName
return nil
})

Parameters

This method takes no parameters.

Returns

*HelpSupportName

Possible errors

CodeTypeDescription
403USER_INVALIDInvalid user provided.

References