import { SendPollResponseSuccess } from './SendPollResponseSuccess.generated'; import { SendPollBadRequestResponse } from './SendPollBadRequestResponse.generated'; import { SendPollUnauthorizedResponse } from './SendPollUnauthorizedResponse.generated'; import { SendPollForbiddenResponse } from './SendPollForbiddenResponse.generated'; import { SendPollNotFoundResponse } from './SendPollNotFoundResponse.generated'; import { SendPollConflictResponse } from './SendPollConflictResponse.generated'; import { SendPollTooManyRequestsResponse } from './SendPollTooManyRequestsResponse.generated'; import { SendPollServerErrorResponse } from './SendPollServerErrorResponse.generated'; import { SendPollUnknownErrorResponse } from './SendPollUnknownErrorResponse.generated'; export type SendPollResponse = SendPollResponseSuccess | SendPollBadRequestResponse | SendPollUnauthorizedResponse | SendPollForbiddenResponse | SendPollNotFoundResponse | SendPollConflictResponse | SendPollTooManyRequestsResponse | SendPollServerErrorResponse | SendPollUnknownErrorResponse;