Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 903 Bytes

File metadata and controls

29 lines (20 loc) · 903 Bytes

AccessPolicy

Properties

Name Type Description Notes
conditions PolicyRuleConditions [optional]

Example

from okta.models.access_policy import AccessPolicy

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

# convert the object into a dict
access_policy_dict = access_policy_instance.to_dict()
# create an instance of AccessPolicy from a dict
access_policy_from_dict = AccessPolicy.from_dict(access_policy_dict)

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