import { SendChatActionResponseSuccess } from './SendChatActionResponseSuccess.generated'; import { SendChatActionBadRequestResponse } from './SendChatActionBadRequestResponse.generated'; import { SendChatActionUnauthorizedResponse } from './SendChatActionUnauthorizedResponse.generated'; import { SendChatActionForbiddenResponse } from './SendChatActionForbiddenResponse.generated'; import { SendChatActionNotFoundResponse } from './SendChatActionNotFoundResponse.generated'; import { SendChatActionConflictResponse } from './SendChatActionConflictResponse.generated'; import { SendChatActionTooManyRequestsResponse } from './SendChatActionTooManyRequestsResponse.generated'; import { SendChatActionServerErrorResponse } from './SendChatActionServerErrorResponse.generated'; import { SendChatActionUnknownErrorResponse } from './SendChatActionUnknownErrorResponse.generated'; export type SendChatActionResponse = SendChatActionResponseSuccess | SendChatActionBadRequestResponse | SendChatActionUnauthorizedResponse | SendChatActionForbiddenResponse | SendChatActionNotFoundResponse | SendChatActionConflictResponse | SendChatActionTooManyRequestsResponse | SendChatActionServerErrorResponse | SendChatActionUnknownErrorResponse;