ab2ae08 af43b14
1
2
3
4
5
6
7
8
9
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