import { LeaveChatResponseSuccess } from './LeaveChatResponseSuccess.generated'; import { LeaveChatBadRequestResponse } from './LeaveChatBadRequestResponse.generated'; import { LeaveChatUnauthorizedResponse } from './LeaveChatUnauthorizedResponse.generated'; import { LeaveChatForbiddenResponse } from './LeaveChatForbiddenResponse.generated'; import { LeaveChatNotFoundResponse } from './LeaveChatNotFoundResponse.generated'; import { LeaveChatConflictResponse } from './LeaveChatConflictResponse.generated'; import { LeaveChatTooManyRequestsResponse } from './LeaveChatTooManyRequestsResponse.generated'; import { LeaveChatServerErrorResponse } from './LeaveChatServerErrorResponse.generated'; import { LeaveChatUnknownErrorResponse } from './LeaveChatUnknownErrorResponse.generated'; export type LeaveChatResponse = LeaveChatResponseSuccess | LeaveChatBadRequestResponse | LeaveChatUnauthorizedResponse | LeaveChatForbiddenResponse | LeaveChatNotFoundResponse | LeaveChatConflictResponse | LeaveChatTooManyRequestsResponse | LeaveChatServerErrorResponse | LeaveChatUnknownErrorResponse;