Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

OSVersionFourComponents

Current version of the operating system (maximum of four components in the versioning scheme)

Properties

Name Type Description Notes
minimum str [optional]

Example

from okta.models.os_version_four_components import OSVersionFourComponents

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

# convert the object into a dict
os_version_four_components_dict = os_version_four_components_instance.to_dict()
# create an instance of OSVersionFourComponents from a dict
os_version_four_components_from_dict = OSVersionFourComponents.from_dict(os_version_four_components_dict)

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