24 lines
330 B
Python
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
|