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

PolicyAccountLink

Properties

Name Type Description Notes
action PolicyAccountLinkAction [optional]
filter PolicyAccountLinkFilter [optional]

Example

from okta.models.policy_account_link import PolicyAccountLink

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

# convert the object into a dict
policy_account_link_dict = policy_account_link_instance.to_dict()
# create an instance of PolicyAccountLink from a dict
policy_account_link_from_dict = PolicyAccountLink.from_dict(policy_account_link_dict)

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