14 lines
247 B
Python
14 lines
247 B
Python
from typing import Dict, Any
|
|
from datetime import datetime
|
|
|
|
from api.schemas.base import Base
|
|
|
|
|
|
class ProcessStatusSchema(Base):
|
|
id: int
|
|
version: int
|
|
snapshot: Dict[str, Any]
|
|
owner_id: int
|
|
created_at: datetime
|
|
is_last: int
|