thousandeyes-sdk-python/dashboards/docs/DashboardSnapshotId.md

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)

[Back to Model list] [Back to API list] [Back to README]