| Name | Type | Description | Notes |
|---|---|---|---|
| container | ContainerOverviewFields | [optional] | |
| instance | InstanceOverviewFields | [optional] | |
| volume | VolumeOverviewFields | [optional] |
from hyperstack.models.overview_info import OverviewInfo
# TODO update the JSON string below
json = "{}"
# create an instance of OverviewInfo from a JSON string
overview_info_instance = OverviewInfo.from_json(json)
# print the JSON string representation of the object
print(OverviewInfo.to_json())
# convert the object into a dict
overview_info_dict = overview_info_instance.to_dict()
# create an instance of OverviewInfo from a dict
overview_info_from_dict = OverviewInfo.from_dict(overview_info_dict)