import { SendLocationResponseSuccess } from './SendLocationResponseSuccess.generated'; import { SendLocationBadRequestResponse } from './SendLocationBadRequestResponse.generated'; import { SendLocationUnauthorizedResponse } from './SendLocationUnauthorizedResponse.generated'; import { SendLocationForbiddenResponse } from './SendLocationForbiddenResponse.generated'; import { SendLocationNotFoundResponse } from './SendLocationNotFoundResponse.generated'; import { SendLocationConflictResponse } from './SendLocationConflictResponse.generated'; import { SendLocationTooManyRequestsResponse } from './SendLocationTooManyRequestsResponse.generated'; import { SendLocationServerErrorResponse } from './SendLocationServerErrorResponse.generated'; import { SendLocationUnknownErrorResponse } from './SendLocationUnknownErrorResponse.generated'; export type SendLocationResponse = SendLocationResponseSuccess | SendLocationBadRequestResponse | SendLocationUnauthorizedResponse | SendLocationForbiddenResponse | SendLocationNotFoundResponse | SendLocationConflictResponse | SendLocationTooManyRequestsResponse | SendLocationServerErrorResponse | SendLocationUnknownErrorResponse;