import { SendContactResponseSuccess } from './SendContactResponseSuccess.generated'; import { SendContactBadRequestResponse } from './SendContactBadRequestResponse.generated'; import { SendContactUnauthorizedResponse } from './SendContactUnauthorizedResponse.generated'; import { SendContactForbiddenResponse } from './SendContactForbiddenResponse.generated'; import { SendContactNotFoundResponse } from './SendContactNotFoundResponse.generated'; import { SendContactConflictResponse } from './SendContactConflictResponse.generated'; import { SendContactTooManyRequestsResponse } from './SendContactTooManyRequestsResponse.generated'; import { SendContactServerErrorResponse } from './SendContactServerErrorResponse.generated'; import { SendContactUnknownErrorResponse } from './SendContactUnknownErrorResponse.generated'; export type SendContactResponse = SendContactResponseSuccess | SendContactBadRequestResponse | SendContactUnauthorizedResponse | SendContactForbiddenResponse | SendContactNotFoundResponse | SendContactConflictResponse | SendContactTooManyRequestsResponse | SendContactServerErrorResponse | SendContactUnknownErrorResponse;