import { SendVideoResponseSuccess } from './SendVideoResponseSuccess.generated'; import { SendVideoBadRequestResponse } from './SendVideoBadRequestResponse.generated'; import { SendVideoUnauthorizedResponse } from './SendVideoUnauthorizedResponse.generated'; import { SendVideoForbiddenResponse } from './SendVideoForbiddenResponse.generated'; import { SendVideoNotFoundResponse } from './SendVideoNotFoundResponse.generated'; import { SendVideoConflictResponse } from './SendVideoConflictResponse.generated'; import { SendVideoTooManyRequestsResponse } from './SendVideoTooManyRequestsResponse.generated'; import { SendVideoServerErrorResponse } from './SendVideoServerErrorResponse.generated'; import { SendVideoUnknownErrorResponse } from './SendVideoUnknownErrorResponse.generated'; export type SendVideoResponse = SendVideoResponseSuccess | SendVideoBadRequestResponse | SendVideoUnauthorizedResponse | SendVideoForbiddenResponse | SendVideoNotFoundResponse | SendVideoConflictResponse | SendVideoTooManyRequestsResponse | SendVideoServerErrorResponse | SendVideoUnknownErrorResponse;