import { SendDiceResponseSuccess } from './SendDiceResponseSuccess.generated'; import { SendDiceBadRequestResponse } from './SendDiceBadRequestResponse.generated'; import { SendDiceUnauthorizedResponse } from './SendDiceUnauthorizedResponse.generated'; import { SendDiceForbiddenResponse } from './SendDiceForbiddenResponse.generated'; import { SendDiceNotFoundResponse } from './SendDiceNotFoundResponse.generated'; import { SendDiceConflictResponse } from './SendDiceConflictResponse.generated'; import { SendDiceTooManyRequestsResponse } from './SendDiceTooManyRequestsResponse.generated'; import { SendDiceServerErrorResponse } from './SendDiceServerErrorResponse.generated'; import { SendDiceUnknownErrorResponse } from './SendDiceUnknownErrorResponse.generated'; export type SendDiceResponse = SendDiceResponseSuccess | SendDiceBadRequestResponse | SendDiceUnauthorizedResponse | SendDiceForbiddenResponse | SendDiceNotFoundResponse | SendDiceConflictResponse | SendDiceTooManyRequestsResponse | SendDiceServerErrorResponse | SendDiceUnknownErrorResponse;