irt-service/app/models/attribute.py
2021-09-14 11:48:25 -04:00

8 lines
133 B
Python

from pydantic import BaseModel
from typing import Optional
class Attribute(BaseModel):
value: str
type: Optional[str]
id: str