mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-14 23:25:25 +03:00
13 lines
318 B
Python
13 lines
318 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class AppTimelineHourlyQueryParameters(BaseModel):
|
|
cameras: Optional[str] = "all"
|
|
labels: Optional[str] = "all"
|
|
after: Optional[float] = None
|
|
before: Optional[float] = None
|
|
limit: Optional[int] = 200
|
|
timezone: Optional[str] = "utc"
|