John Smith
john@example.com
from typing import Optional
from pydantic import BaseModel, ConfigDict
class Error(BaseModel):
"""Error information from a response."""
error_code: Optional[str] = None
message: str
request_id: str
model_config = ConfigDict(protected_namespaces=())