9 lines
217 B
Python
9 lines
217 B
Python
|
|
from ....schemas.dto import BaseModelSdk
|
||
|
|
from pydantic import ConfigDict
|
||
|
|
|
||
|
|
class Error(BaseModelSdk):
|
||
|
|
model_config = ConfigDict(title="Notion_Responses_Errors_Error")
|
||
|
|
status: int
|
||
|
|
code: str
|
||
|
|
message: str
|