mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-07 07:27:02 +08:00
18 lines
407 B
Python
18 lines
407 B
Python
# generated by datamodel-codegen:
|
|
# filename: https://stagingapi.comfy.org/openapi
|
|
# timestamp: 2025-04-29T03:13:19+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
|