OBJECT

LoyaltyBadge

Communicates a Loyalty Badge (usually during upload).

link GraphQL Schema definition

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