11 lines
175 B
Python
11 lines
175 B
Python
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
|
|
class EntityGetParentId(BaseModel):
|
|
"""The response from the `EntityGetParentId` command."""
|
|
|
|
entity_id: UUID
|