2023-11-28 23:50:50 -08:00
|
|
|
from typing import List
|
2023-08-30 15:59:51 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-08-30 15:59:51 -07:00
|
|
|
|
|
|
|
|
2023-11-29 00:39:14 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class MouseClick(BaseModel):
|
|
|
|
"""The response from the `MouseClick` command."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-29 10:32:31 -08:00
|
|
|
entities_modified: List[str]
|
2023-08-30 15:59:51 -07:00
|
|
|
|
2023-11-29 10:32:31 -08:00
|
|
|
entities_selected: List[str]
|