| Name | Type | Description | Notes |
|---|---|---|---|
| groups | PolicyAccountLinkFilterGroups | [optional] |
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)