import { SendPhotoResponseSuccess } from './SendPhotoResponseSuccess.generated'; import { SendPhotoBadRequestResponse } from './SendPhotoBadRequestResponse.generated'; import { SendPhotoUnauthorizedResponse } from './SendPhotoUnauthorizedResponse.generated'; import { SendPhotoForbiddenResponse } from './SendPhotoForbiddenResponse.generated'; import { SendPhotoNotFoundResponse } from './SendPhotoNotFoundResponse.generated'; import { SendPhotoConflictResponse } from './SendPhotoConflictResponse.generated'; import { SendPhotoTooManyRequestsResponse } from './SendPhotoTooManyRequestsResponse.generated'; import { SendPhotoServerErrorResponse } from './SendPhotoServerErrorResponse.generated'; import { SendPhotoUnknownErrorResponse } from './SendPhotoUnknownErrorResponse.generated'; export type SendPhotoResponse = SendPhotoResponseSuccess | SendPhotoBadRequestResponse | SendPhotoUnauthorizedResponse | SendPhotoForbiddenResponse | SendPhotoNotFoundResponse | SendPhotoConflictResponse | SendPhotoTooManyRequestsResponse | SendPhotoServerErrorResponse | SendPhotoUnknownErrorResponse;