You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
326 B
19 lines
326 B
from datetime import datetime
|
|
|
|
from api.response.base import ResponseBase
|
|
|
|
|
|
class AreaCharts:
|
|
name: str
|
|
value: int
|
|
|
|
|
|
class TimelineCharts(AreaCharts):
|
|
time: datetime
|
|
|
|
|
|
class RequestAnalytics(ResponseBase):
|
|
timeline_charts: list[TimelineCharts]
|
|
area_charts: list[AreaCharts]
|
|
bar_chars: list[AreaCharts]
|