INPUT_OBJECT

BitsBadgeTierInput

BadgeTier metadata to modify.

link GraphQL Schema definition

1input BitsBadgeTierInput {
4
2# Whether to reset the images to the default images.
3deleteImage: Boolean
7
5# Wether to reset the badge title to the default title.
6deleteTitle: Boolean
10
8# A list of emoticons to modify.
9emoticonSettings: [BitsBadgeTierEmoticonSetting!]
13
11# Base64 encoded binary data of the 18x18px badge ("1x") image asset.
12imageData1x: String
16
14# Base64 encoded binary data of the 36x36px badge ("2x") image asset.
15imageData2x: String
19
17# Base64 encoded binary data of the 72x72px badge ("4x") image asset.
18imageData4x: String
22
20# Whether the badge is enabled for this threshold.
21isEnabled: Boolean
25
23# The threshold to modify.
24threshold: Int!
28
26# Badge title as string.
27title: String
29}