jcloude/libs/fc_cli/fc/models.py
2025-12-23 21:34:08 +08:00

24 lines
330 B
Python

from typing import TypedDict
class ClientList(TypedDict):
pagetype: str
filters: dict[str, str]
fields: list[str]
start: int
limit: int
limit_start: int
limit_page_length: int
debug: bool | int
class ClientGet(TypedDict):
pagetype: str
name: str
class ClientRunDocMethod(TypedDict):
dt: str
dn: str
method: str