| Name | Type | Description | Notes |
|---|---|---|---|
| os | PlatformConditionEvaluatorPlatformOperatingSystem | [optional] | |
| type | PolicyPlatformType | [optional] |
from okta.models.platform_condition_evaluator_platform import PlatformConditionEvaluatorPlatform
# TODO update the JSON string below
json = "{}"
# create an instance of PlatformConditionEvaluatorPlatform from a JSON string
platform_condition_evaluator_platform_instance = PlatformConditionEvaluatorPlatform.from_json(json)
# print the JSON string representation of the object
print(PlatformConditionEvaluatorPlatform.to_json())
# convert the object into a dict
platform_condition_evaluator_platform_dict = platform_condition_evaluator_platform_instance.to_dict()
# create an instance of PlatformConditionEvaluatorPlatform from a dict
platform_condition_evaluator_platform_from_dict = PlatformConditionEvaluatorPlatform.from_dict(platform_condition_evaluator_platform_dict)