Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

File metadata and controls

30 lines (21 loc) · 1.3 KB

PlatformConditionEvaluatorPlatform

Properties

Name Type Description Notes
os PlatformConditionEvaluatorPlatformOperatingSystem [optional]
type PolicyPlatformType [optional]

Example

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)

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