OBJECT
LoyaltyBadge
Communicates a Loyalty Badge (usually during upload).
link GraphQL Schema definition
1 type LoyaltyBadge { 2 3 # Unique identifier the badges method of tenure by channelid and cumulative 4 # months. 5 : ID! 6 7 # The channel's loyalty badge unique identifier. 8 : ID! 9 10 # image1xURL to retrieve the 1x sized Badge. 11 : String! 12 13 # Image1xURL to retrieve the 2x sized Badge. 14 : String! 15 16 # image4xURL to retrieve the 4x sized Badge. 17 : String! 18 19 # Identifies the amount of cumulative tenure months to acquire Badge. 20 : Int! 21 22 # A localized, human-friendly title for the badge. 23 # Defaults to English if no translation exists for the requested locale. 24 : String! 25 26 }