mirror of https://github.com/milvus-io/milvus.git
29 lines
652 B
Python
29 lines
652 B
Python
# generated by datamodel-codegen:
|
|
# filename: openapi.json
|
|
# timestamp: 2022-12-08T02:46:08+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class KeyDataPair(BaseModel):
|
|
data: Optional[List[int]] = None
|
|
key: Optional[str] = None
|
|
|
|
|
|
class KeyValuePair(BaseModel):
|
|
key: Optional[str] = Field(None, example='dim')
|
|
value: Optional[str] = Field(None, example='128')
|
|
|
|
|
|
class MsgBase(BaseModel):
|
|
msg_type: Optional[int] = Field(None, description='Not useful for now')
|
|
|
|
|
|
class Status(BaseModel):
|
|
error_code: Optional[int] = None
|
|
reason: Optional[str] = None
|