mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-07 00:06:57 +01:00
d3b631a952
* Organize api files * Add more API definitions for events * Add export select by ID * Typing fixes * Update openapi spec * Change type * Fix test * Fix message * Fix tests
32 lines
857 B
Python
32 lines
857 B
Python
from typing import Union
|
|
|
|
from pydantic import BaseModel
|
|
from pydantic.json_schema import SkipJsonSchema
|
|
|
|
from frigate.review.maintainer import SeverityEnum
|
|
|
|
|
|
class ReviewQueryParams(BaseModel):
|
|
cameras: str = "all"
|
|
labels: str = "all"
|
|
zones: str = "all"
|
|
reviewed: int = 0
|
|
limit: Union[int, SkipJsonSchema[None]] = None
|
|
severity: Union[SeverityEnum, SkipJsonSchema[None]] = None
|
|
before: Union[float, SkipJsonSchema[None]] = None
|
|
after: Union[float, SkipJsonSchema[None]] = None
|
|
|
|
|
|
class ReviewSummaryQueryParams(BaseModel):
|
|
cameras: str = "all"
|
|
labels: str = "all"
|
|
zones: str = "all"
|
|
timezone: str = "utc"
|
|
|
|
|
|
class ReviewActivityMotionQueryParams(BaseModel):
|
|
cameras: str = "all"
|
|
before: Union[float, SkipJsonSchema[None]] = None
|
|
after: Union[float, SkipJsonSchema[None]] = None
|
|
scale: int = 30
|