Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 708 Bytes

File metadata and controls

28 lines (20 loc) · 708 Bytes

OS

An enumeration.

Properties

Name Type Description Notes

Example

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)

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