Source code for kittycad.models.api_call_query_group
from pydantic import BaseModel, ConfigDict
[docs]
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=())