Current version of the operating system
| Name | Type | Description | Notes |
|---|---|---|---|
| minimum | str | [optional] |
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)