sdk/python/shroomdk/models/api/api_response.py
2022-07-20 15:26:53 -04:00

10 lines
260 B
Python

from typing import Any
from pydantic import BaseModel, Field
class ApiResponse(BaseModel):
status_code: int = Field(None, description="The server-side token of the query being executed.")
status_msg: str | None
error_msg: str | None
data: Any | None