Skip to main content

account.getChannelRestrictedStatusEmojis

Returns fetch the full list of custom emoji IDs » that cannot be used in channel emoji statuses ».

func (c *Client) AccountGetChannelRestrictedStatusEmojis(ctx context.Context, hash int64) (EmojiListClass, error)

Calling this method

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

res, err := api.AccountGetChannelRestrictedStatusEmojis(ctx, hash)
if err != nil {
return err
}
_ = res // EmojiListClass
return nil
})

Parameters

NameTypeRequiredDescription
Hashint64yesHash used for caching, for more info click here.

Returns

EmojiListClass

References