mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1000 B
1000 B
DashboardSnapshotId
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| snapshot_id | str | Identifier of the dashboard snapshot. | [optional] |
Example
from dashboards.models.dashboard_snapshot_id import DashboardSnapshotId
# TODO update the JSON string below
json = "{}"
# create an instance of DashboardSnapshotId from a JSON string
dashboard_snapshot_id_instance = DashboardSnapshotId.from_json(json)
# print the JSON string representation of the object
print(DashboardSnapshotId.to_json())
# convert the object into a dict
dashboard_snapshot_id_dict = dashboard_snapshot_id_instance.to_dict()
# create an instance of DashboardSnapshotId from a dict
dashboard_snapshot_id_from_dict = DashboardSnapshotId.from_dict(dashboard_snapshot_id_dict)