OBJECT

CreateCommunityPointsImageUploadInfoPayload

The response from generating upload info for Community Points images.

link GraphQL Schema definition

1type CreateCommunityPointsImageUploadInfoPayload {
2
3# An error that occurred retrieving upload info for Community Points.
4error: CreateCommunityPointsImageUploadInfoError
5
6# The upload info (url and upload ID) for the large version of the image.
7uploadInfoLarge: CommunityPointsImageUploadInfo
8
9# The upload info (url and upload ID) for the medium version of the image.
10uploadInfoMedium: CommunityPointsImageUploadInfo
11
12# The upload info (url and upload ID) for the small version of the image.
13uploadInfoSmall: CommunityPointsImageUploadInfo
14
15}