import { SendGameResponseSuccess } from './SendGameResponseSuccess.generated'; import { SendGameBadRequestResponse } from './SendGameBadRequestResponse.generated'; import { SendGameUnauthorizedResponse } from './SendGameUnauthorizedResponse.generated'; import { SendGameForbiddenResponse } from './SendGameForbiddenResponse.generated'; import { SendGameNotFoundResponse } from './SendGameNotFoundResponse.generated'; import { SendGameConflictResponse } from './SendGameConflictResponse.generated'; import { SendGameTooManyRequestsResponse } from './SendGameTooManyRequestsResponse.generated'; import { SendGameServerErrorResponse } from './SendGameServerErrorResponse.generated'; import { SendGameUnknownErrorResponse } from './SendGameUnknownErrorResponse.generated'; export type SendGameResponse = SendGameResponseSuccess | SendGameBadRequestResponse | SendGameUnauthorizedResponse | SendGameForbiddenResponse | SendGameNotFoundResponse | SendGameConflictResponse | SendGameTooManyRequestsResponse | SendGameServerErrorResponse | SendGameUnknownErrorResponse;