Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 857 Bytes

File metadata and controls

30 lines (21 loc) · 857 Bytes

OSVersion

Current version of the operating system

Properties

Name Type Description Notes
minimum str [optional]

Example

from okta.models.os_version import OSVersion

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

# convert the object into a dict
os_version_dict = os_version_instance.to_dict()
# create an instance of OSVersion from a dict
os_version_from_dict = OSVersion.from_dict(os_version_dict)

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