INPUT_OBJECT

CreateCommunityPointsImageUploadInfoInput

Input for generating upload info (urls and upload IDs) for uploading Community Points images. Channel ID is required. Only one of the other three fields should be set, to indicate what the image is being uploaded for.

link GraphQL Schema definition

1input CreateCommunityPointsImageUploadInfoInput {
4
2# If set, this request is for uploading new images for the given automatic reward.
3automaticRewardType: CommunityPointsAutomaticRewardType
7
5# The channel ID to upload images for.
6channelID: ID!
10
8# If set, this request is for uploading new images for the given custom reward.
9customRewardID: ID
13
11# If set, this request is for uploading new images for the given community goal.
12goalID: ID
17
14# If set, this request is for uploading new images for the channel Community
15# Points icon.
16icon: Boolean
18}