INPUT_OBJECT

CreateBadgeFlairInput

Input to the CreateBadgeFlair mutation

link GraphQL Schema definition

1input CreateBadgeFlairInput {
4
2# ID of the creator/channel which owns this custom badge flair.
3channelID: ID!
8
5# The S3 ID of the 1x sized badge, provided to clients by Upload Service. (See the
6# createLoyaltyBadgeUploadConfig mutation).
7image1xID: ID!
12
9# The S3 ID of the 2x sized badge provided to clients by Upload Service. (See the
10# createLoyaltyBadgeUploadConfig mutation).
11image2xID: ID!
16
13# The S3 ID of the 4x sized badge provided to clients by Upload Service. (See the
14# createLoyaltyBadgeUploadConfig mutation).
15image4xID: ID!
19
17# Sub tier which receives access to this flair.
18tier: CreatorBadgeFlairTier!
20}