10 lines
152 B
Python
10 lines
152 B
Python
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class EntityGetParentId(BaseModel):
|
|
"""The response from the `EntityGetParentId` command."""
|
|
|
|
entity_id: str
|