| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[SnapshotItem] | [optional] |
from instana_client.models.snapshot_result import SnapshotResult
# TODO update the JSON string below
json = "{}"
# create an instance of SnapshotResult from a JSON string
snapshot_result_instance = SnapshotResult.from_json(json)
# print the JSON string representation of the object
print(SnapshotResult.to_json())
# convert the object into a dict
snapshot_result_dict = snapshot_result_instance.to_dict()
# create an instance of SnapshotResult from a dict
snapshot_result_from_dict = SnapshotResult.from_dict(snapshot_result_dict)