2024-05-23 14:05:38 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-05-23 14:05:38 -07:00
|
|
|
|
|
|
|
from ..models.camera_settings import CameraSettings
|
|
|
|
|
|
|
|
|
|
|
|
class ZoomToFit(BaseModel):
|
|
|
|
"""The response from the `ZoomToFit` command."""
|
|
|
|
|
|
|
|
settings: CameraSettings
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|