Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

OverviewInfo

Properties

Name Type Description Notes
container ContainerOverviewFields [optional]
instance InstanceOverviewFields [optional]
volume VolumeOverviewFields [optional]

Example

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)

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