Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

SimulateResultRules

Properties

Name Type Description Notes
id str The unique ID number of the policy rule [optional]
name str The name of the policy rule [optional]
status str The result of the entity evaluation [optional]
conditions SimulateResultConditions [optional]

Example

from okta.models.simulate_result_rules import SimulateResultRules

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

# convert the object into a dict
simulate_result_rules_dict = simulate_result_rules_instance.to_dict()
# create an instance of SimulateResultRules from a dict
simulate_result_rules_from_dict = SimulateResultRules.from_dict(simulate_result_rules_dict)

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