mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
15 lines
234 B
Python
15 lines
234 B
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
|
|
|
|
class DataScheme(BaseModel):
|
|
id: str
|
|
action: str
|
|
geetest: Optional[object]
|
|
|
|
|
|
class RiskyCheck(BaseModel):
|
|
retcode: int
|
|
message: str
|
|
data: DataScheme
|