Files
sriphat-dataplatform/03-apiservice/app/api/v1/schemas.py

16 lines
298 B
Python

from datetime import datetime
from pydantic import BaseModel
class FeedCheckpointIn(BaseModel):
id: int
hn: int
vn: int
location: str
type: str
timestamp_in: datetime
timestamp_out: datetime | None = None
waiting_time: int | None = None
bu: str | None = None