2023-08-30 15:59:51 -07:00
|
|
|
|
2024-01-06 18:32:21 -08:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2023-11-29 00:39:14 -08:00
|
|
|
|
|
|
|
from .base64data import Base64Data
|
2023-08-30 15:59:51 -07:00
|
|
|
|
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class TakeSnapshot(BaseModel):
|
|
|
|
"""The response from the `TakeSnapshot` command."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-29 00:39:14 -08:00
|
|
|
contents: Base64Data
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|