| Name |
Type |
Description |
Notes |
| status |
str |
The result of the entity evaluation |
[optional] |
| type |
str |
The type of condition |
[optional] |
from okta.models.simulate_result_conditions import SimulateResultConditions
# TODO update the JSON string below
json = "{}"
# create an instance of SimulateResultConditions from a JSON string
simulate_result_conditions_instance = SimulateResultConditions.from_json(json)
# print the JSON string representation of the object
print(SimulateResultConditions.to_json())
# convert the object into a dict
simulate_result_conditions_dict = simulate_result_conditions_instance.to_dict()
# create an instance of SimulateResultConditions from a dict
simulate_result_conditions_from_dict = SimulateResultConditions.from_dict(simulate_result_conditions_dict)
[Back to Model list] [Back to API list] [Back to README]