17 lines
303 B
Python
17 lines
303 B
Python
from typing import List, Optional
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from ..models.api_error import ApiError
|
|
|
|
|
|
class FailureWebSocketResponse(BaseModel):
|
|
"""Unsuccessful Websocket response."""
|
|
|
|
errors: List[ApiError]
|
|
|
|
request_id: Optional[UUID] = None
|
|
|
|
success: bool
|