18 lines
392 B
Python
18 lines
392 B
Python
# generated by datamodel-codegen:
|
|
# filename: filtered-openapi.yaml
|
|
# timestamp: 2025-04-29T23:44:54+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
|