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