ENUM

EmoteAssetType

The asset type of the emote (static, animated, etc.).

link GraphQL Schema definition

1enum EmoteAssetType {
2
3# The emote's asset is animated (e.g. GIF).
4ANIMATED
5
6# The emote's asset is static (e.g. PNG).
7STATIC
8
9# The emote's asset type is unknown.
10UNKNOWN
11}