10 lines
164 B
Python
10 lines
164 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class UploadResponse(BaseModel):
|
|
image_id: str
|
|
expires_at: datetime
|
|
quality_check: dict
|