8 lines
133 B
Python
8 lines
133 B
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
|
|
class Attribute(BaseModel):
|
|
value: str
|
|
type: Optional[str]
|
|
id: str
|