OBJECT

CreateDropImageUploadURLPayload

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

link GraphQL Schema definition

1type CreateDropImageUploadURLPayload {
2
3# Error (if any) from trying to create the upload URL.
4error: CreateDropImageUploadURLErrorCode
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.
10url: String
11
12}