Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

PolicyAccountLinkFilter

Properties

Name Type Description Notes
groups PolicyAccountLinkFilterGroups [optional]

Example

from okta.models.policy_account_link_filter import PolicyAccountLinkFilter

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

# convert the object into a dict
policy_account_link_filter_dict = policy_account_link_filter_instance.to_dict()
# create an instance of PolicyAccountLinkFilter from a dict
policy_account_link_filter_from_dict = PolicyAccountLinkFilter.from_dict(policy_account_link_filter_dict)

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