import { GetChatResponseSuccess } from './GetChatResponseSuccess.generated'; import { GetChatBadRequestResponse } from './GetChatBadRequestResponse.generated'; import { GetChatUnauthorizedResponse } from './GetChatUnauthorizedResponse.generated'; import { GetChatForbiddenResponse } from './GetChatForbiddenResponse.generated'; import { GetChatNotFoundResponse } from './GetChatNotFoundResponse.generated'; import { GetChatConflictResponse } from './GetChatConflictResponse.generated'; import { GetChatTooManyRequestsResponse } from './GetChatTooManyRequestsResponse.generated'; import { GetChatServerErrorResponse } from './GetChatServerErrorResponse.generated'; import { GetChatUnknownErrorResponse } from './GetChatUnknownErrorResponse.generated'; export type GetChatResponse = GetChatResponseSuccess | GetChatBadRequestResponse | GetChatUnauthorizedResponse | GetChatForbiddenResponse | GetChatNotFoundResponse | GetChatConflictResponse | GetChatTooManyRequestsResponse | GetChatServerErrorResponse | GetChatUnknownErrorResponse;