14 lines
256 B
Python
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=())
|