2024-04-05 13:12:19 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-04-05 13:12:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DefaultCameraFocusOn(BaseModel):
|
|
|
|
"""The response from the `DefaultCameraFocusOn` command."""
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|