Spaces:
Sleeping
Sleeping
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 |