mirror of
https://github.com/FlipsideCrypto/sdk.git
synced 2026-02-06 10:46:43 +00:00
10 lines
260 B
Python
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
|