Files
kittycad.py/kittycad/models/api_call_query_group.py
Jess Frazelle 2b44cdfb96 updates
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2024-07-28 15:21:51 -07:00

14 lines
256 B
Python

from pydantic import BaseModel, ConfigDict
class ApiCallQueryGroup(BaseModel):
"""A response for a query on the API call table that is grouped by something."""
count: int
query: str
model_config = ConfigDict(protected_namespaces=())