OBJECT

SubscriberBadgeProgress

SubscriberBadgeProgress contains progress information for subscription badges based on a user's tenure.

link GraphQL Schema definition

1type SubscriberBadgeProgress {
2
3# The ID is a composite of channel_id (owner of badge) / user_id (viewer
4# requesting badge) / version
5id: ID!
6
7# URL of 18x18 asset.
8image1xURL: String!
9
10# URL of 36x36 asset.
11image2xURL: String!
12
13# URL of 72x72 asset.
14image4xURL: String!
15
16# The percentage of tenure already earned towards this badge.
17percentCompleted: Float!
18
19# The total tenure in months required to earn this badge.
20requiredTenureMonths: Int!
21
22# Metadata about how a subscriber badge is stored & fetched.
23version: String!
24
25}