An enumeration.
| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.os import OS
# TODO update the JSON string below
json = "{}"
# create an instance of OS from a JSON string
os_instance = OS.from_json(json)
# print the JSON string representation of the object
print OS.to_json()
# convert the object into a dict
os_dict = os_instance.to_dict()
# create an instance of OS from a dict
os_form_dict = os.from_dict(os_dict)