OBJECT

CommunityPointsLimitedEarnings

Availability of limited earn actions for a viewer in a specific channel.

link GraphQL Schema definition

1type CommunityPointsLimitedEarnings {
2
3# Timestamp of when points will become available for cheering on the channel.
4# This will be nil if isCheerAvailable is true and can be nil when
5# isCheerAvailable is false
6# indicating that there is not currently a time in the future when it will become
7# available.
8cheerAvailableAt: Time
9
10# A unique identifier.
11id: ID!
12
13# Can the user cheer to get points on the channel.
14isCheerAvailable: Boolean!
15
16# Can the user follow to get points on the channel.
17isFollowAvailable: Boolean!
18
19# Can the user gift a subscription in the channel to get points on the channel.
20isSubscriptionGiftAvailable: Boolean!
21
22# Timestamp of when points will become available for gifting subscriptions on the
23# channel.
24# This will be nil if isSubscriptionGiftAvailable is true and can be nil when
25# isSubscriptionGiftAvailable is false
26# indicating that there is not currently a time in the future when it will become
27# available.
28subscriptionGiftAvailableAt: Time
29
30}