2022-04-06 20:35:34 -07:00
|
|
|
|
2024-01-06 18:32:21 -08:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2022-04-06 20:35:34 -07:00
|
|
|
|
|
|
|
|
2023-11-29 00:39:14 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class ApiCallQueryGroup(BaseModel):
|
|
|
|
"""A response for a query on the API call table that is grouped by something."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
count: int
|
2022-04-06 20:35:34 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
query: str
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|