account.getDefaultProfilePhotoEmojis
Get a set of suggested custom emoji stickers that can be used as profile picture
func (c *Client) AccountGetDefaultProfilePhotoEmojis(ctx context.Context, hash int64) (EmojiListClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.AccountGetDefaultProfilePhotoEmojis(ctx, hash)
if err != nil {
return err
}
_ = res // EmojiListClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Hash | int64 | yes | Hash used for caching, for more info click here. |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
account.getDefaultProfilePhotoEmojis#e2750328