Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

RegionFields

Properties

Name Type Description Notes
country str [optional]
description str [optional]
green_status str Green status [optional]
id int [optional]
name str [optional]

Example

from hyperstack.models.region_fields import RegionFields

# TODO update the JSON string below
json = "{}"
# create an instance of RegionFields from a JSON string
region_fields_instance = RegionFields.from_json(json)
# print the JSON string representation of the object
print(RegionFields.to_json())

# convert the object into a dict
region_fields_dict = region_fields_instance.to_dict()
# create an instance of RegionFields from a dict
region_fields_from_dict = RegionFields.from_dict(region_fields_dict)

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