mirror of
https://github.com/FlipsideCrypto/sdk.git
synced 2026-02-06 18:56:44 +00:00
11 lines
207 B
Python
11 lines
207 B
Python
from typing import Any, Union
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ApiResponse(BaseModel):
|
|
status_code: int
|
|
status_msg: Union[str, None]
|
|
error_msg: Union[str, None]
|
|
data: Union[Any, None]
|