OBJECT
RitualToken
A ritual is an opportunity for a viewer to better connect with a streamer's community by announcing when they reach milestones in the channel. A ritual token is issued when a user is eligible for the ritual, and can be redeemed to send the announcement in a channel.
link GraphQL Schema definition
1 type RitualToken { 2 3 # The channel that the user can redeem the ritual token in. 4 : User 5 6 # The time after which the ritual is considered expired and can no longer be 7 # redeemed. Clients should dismiss the ritual UI if it's still shown after 8 # this time. Null if the ritual never expires. 9 : Time 10 11 # A unique ID for the ritual token. 12 : ID! 13 14 # The status of the ritual token. 15 : RitualTokenStatus 16 17 # The type of the ritual to be redeemed. 18 : RitualTokenType 19 20 # The user that owns the ritual token. 21 : User 22 23 }
link Required by
- DismissRitualTokenPayloadDismissRitualTokenPayload is the response when dismissing a ritual token.
- RedeemRitualTokenPayloadRedeemRitualTokenPayload is the response when redeeming a ritual token.
- RequestRitualTokenPayloadRequestRitualTokenPayload is the response when requesting a ritual token.
- UserSelfConnectionSubjective data on another User (user/channel) for the current user.