6 lines
194 B
Python
6 lines
194 B
Python
from pydantic import BaseModel
|
|
from typing import List, Optional
|
|
from sdk_server.models.config.response_base import ResponseBase
|
|
|
|
class BatchUploadRsp(ResponseBase):
|
|
data:Optional[List] = [] |