qccamapi / models /image_object.py
patharanor's picture
add ref image uri
af43b14
raw
history blame contribute delete
199 Bytes
from pydantic import BaseModel
from typing import Union
class ImageObject(BaseModel):
name: str
key: str
job_no: str
content: Union[str, None] = None
ref: Union[str, None] = None