OBJECT
SubscriberBadgeProgress
SubscriberBadgeProgress contains progress information for subscription badges based on a user's tenure.
link GraphQL Schema definition
1 type SubscriberBadgeProgress { 2 3 # The ID is a composite of channel_id (owner of badge) / user_id (viewer 4 # requesting badge) / version 5 : ID! 6 7 # URL of 18x18 asset. 8 : String! 9 10 # URL of 36x36 asset. 11 : String! 12 13 # URL of 72x72 asset. 14 : String! 15 16 # The percentage of tenure already earned towards this badge. 17 : Float! 18 19 # The total tenure in months required to earn this badge. 20 : Int! 21 22 # Metadata about how a subscriber badge is stored & fetched. 23 : String! 24 25 }