Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

SimulatePolicyResult

The result of the policy evaluation

Properties

Name Type Description Notes
policies List[SimulateResultPoliciesItems] [optional]

Example

from okta.models.simulate_policy_result import SimulatePolicyResult

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

# convert the object into a dict
simulate_policy_result_dict = simulate_policy_result_instance.to_dict()
# create an instance of SimulatePolicyResult from a dict
simulate_policy_result_from_dict = SimulatePolicyResult.from_dict(simulate_policy_result_dict)

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