You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTTPAsyncIterator of [`BroadcasterSubscription`][] objects.
144
-
total: int
145
-
The total number of users that subscribe to this broadcaster.
146
-
points: int
147
+
total: int | None
148
+
The total number of users that subscribe to this broadcaster. This is `None` if `user_ids` is provided.
149
+
points: int | None
147
150
The current number of subscriber points earned by this broadcaster.
148
151
Points are based on the subscription tier of each user that subscribes to this broadcaster.
149
152
150
153
For example, a Tier 1 subscription is worth 1 point, Tier 2 is worth 2 points, and Tier 3 is worth 6 points.
151
154
The number of points determines the number of emote slots that are unlocked for the broadcaster (see `Subscriber Emote Slots <https://help.twitch.tv/s/article/subscriber-emote-guide#emoteslots>`_).
155
+
156
+
This is `None` if `user_ids` is provided.
152
157
"""
153
158
154
159
__slots__= (
@@ -159,8 +164,8 @@ class BroadcasterSubscriptions:
0 commit comments