OBJECT

Emote

link GraphQL Schema definition

1type Emote {
2
3# The type of image asset of the emote (static, animated, etc.).
4assetType: EmoteAssetType
5
6# The Bits Badge Tier metadata associated with this Bits Badge Tier Emote. Nil for
7# other emote types.
8bitsBadgeTierSummary: EmoteBitsBadgeTierSummary
9
10# The timestamp at which this emote was created.
11createdAt: Time
12
13# The emote's identifier.
14# For example, "115847".
15id: ID
16
17# The list of modifiers a user is entitled to use for an emote.
18modifiers: [EmoteModifier!]
19
20# A priority order for displaying this emote among others in the same group.
21order: Int
22
23# The user who owns the subscription product that this emote belongs to.
24owner: User
25
26# Identifies which set this emote belongs to.
27setID: ID
28
29# The state of an emote. Can be either active or pending.
30state: EmoteState!
31
32# The subscription product this emote belongs to. Nil for globals.
33subscriptionProduct: SubscriptionProduct
34
35# The subscription info for this emote (if the emote is obtainable via
36# subscription).
37subscriptionSummaries: [SubscriptionSummary!]
38
39# This is very sparsely populated at present (only when subscription summaries are
40# populated).
41# This is subscription tier that is associated with this emote (if one exists) and
42# if the emote and subscription shares an owner.
43subscriptionTier: SubscriptionSummaryTier
44
45# For subscription and bits badge tier emotes, this is the user generated suffix.
46# For example, for "lirikLUL" suffix would be "LUL".
47suffix: String
48
49# The visual representation of the emote.
50# For example, "O_o" instead of "(O|o)_(o|O)".
51text: String
52
53# The text token of the emote.
54# For example, "KappaHD".
55token: String
56
57# The type of emote that this is.
58# For example, a global emote, a turbo emote, a prime emote, a sub emote, etc.
59type: EmoteType
60
61}