OBJECT

CreateBountyCampaignUploadConfigPayload

Returned information about image upload including URL to upload the image to.

link GraphQL Schema definition

1type CreateBountyCampaignUploadConfigPayload {
2
3# Unique identifier for the image.
4imageID: ID
5
6# Unique identifier for the generated URL.
7uploadID: ID
8
9# The actual URL to be used by the client to upload the image.
10uploadURL: String
11
12}