mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
44 lines
845 B
Python
44 lines
845 B
Python
|
from datetime import datetime
|
||
|
from typing import Dict
|
||
|
|
||
|
from pydantic import BaseModel, Json
|
||
|
|
||
|
from frigate.review.maintainer import SeverityEnum
|
||
|
|
||
|
|
||
|
class ReviewSegmentResponse(BaseModel):
|
||
|
id: str
|
||
|
camera: str
|
||
|
start_time: datetime
|
||
|
end_time: datetime
|
||
|
has_been_reviewed: bool
|
||
|
severity: SeverityEnum
|
||
|
thumb_path: str
|
||
|
data: Json
|
||
|
|
||
|
|
||
|
class Last24HoursReview(BaseModel):
|
||
|
reviewed_alert: int
|
||
|
reviewed_detection: int
|
||
|
total_alert: int
|
||
|
total_detection: int
|
||
|
|
||
|
|
||
|
class DayReview(BaseModel):
|
||
|
day: datetime
|
||
|
reviewed_alert: int
|
||
|
reviewed_detection: int
|
||
|
total_alert: int
|
||
|
total_detection: int
|
||
|
|
||
|
|
||
|
class ReviewSummaryResponse(BaseModel):
|
||
|
last24Hours: Last24HoursReview
|
||
|
root: Dict[str, DayReview]
|
||
|
|
||
|
|
||
|
class ReviewActivityMotionResponse(BaseModel):
|
||
|
start_time: int
|
||
|
motion: float
|
||
|
camera: str
|