Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

SimulatePolicyBody

The request body required for a simulate policy operation.

Properties

Name Type Description Notes
policy_types List[PolicyType] Supported policy types for a simulate operation. The default value, `null`, returns all types. [optional]
app_instance str The application instance ID for a simulate operation
policy_context PolicyContext [optional]

Example

from okta.models.simulate_policy_body import SimulatePolicyBody

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

# convert the object into a dict
simulate_policy_body_dict = simulate_policy_body_instance.to_dict()
# create an instance of SimulatePolicyBody from a dict
simulate_policy_body_from_dict = SimulatePolicyBody.from_dict(simulate_policy_body_dict)

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