Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.59 KB

File metadata and controls

31 lines (22 loc) · 1.59 KB

PlatformConditionEvaluatorPlatformOperatingSystem

Properties

Name Type Description Notes
expression str [optional]
type PolicyPlatformOperatingSystemType [optional]
version PlatformConditionEvaluatorPlatformOperatingSystemVersion [optional]

Example

from okta.models.platform_condition_evaluator_platform_operating_system import PlatformConditionEvaluatorPlatformOperatingSystem

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

# convert the object into a dict
platform_condition_evaluator_platform_operating_system_dict = platform_condition_evaluator_platform_operating_system_instance.to_dict()
# create an instance of PlatformConditionEvaluatorPlatformOperatingSystem from a dict
platform_condition_evaluator_platform_operating_system_from_dict = PlatformConditionEvaluatorPlatformOperatingSystem.from_dict(platform_condition_evaluator_platform_operating_system_dict)

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