mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-24 18:10:27 +08:00
18 lines
400 B
Python
18 lines
400 B
Python
|
|
# generated by datamodel-codegen:
|
||
|
|
# filename: https://api.comfy.org/openapi
|
||
|
|
# timestamp: 2025-04-23T15:56:33+00:00
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from typing import Optional
|
||
|
|
|
||
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
from . import PixverseDto
|
||
|
|
|
||
|
|
|
||
|
|
class ResponseData(BaseModel):
|
||
|
|
ErrCode: Optional[int] = None
|
||
|
|
ErrMsg: Optional[str] = None
|
||
|
|
Resp: Optional[PixverseDto.V2OpenAPII2VResp] = None
|