OBJECT

EmoteSet

Represents a group of emotes.

link GraphQL Schema definition

1type EmoteSet {
2
3# The list of emotes which belong to this set.
4emotes: [Emote]
5
6# The emote set's identifier.
7id: ID
8
9# The channel associated with the emote set. Nil for emote sets not associated
10# with an owner (prime, fuel, rewards, etc.).
11owner: User
12
13# The asset type of the emotes within the emote group.
14assetType: EmoteGroupAssetType
15
16}