| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| activate | HrefObjectActivateLink | [optional] | |
| deactivate | HrefObjectDeactivateLink | [optional] | |
| rules | HrefObjectRulesLink | [optional] | |
| mappings | HrefObjectMappingsLink | [optional] |
from okta.models.policy_links import PolicyLinks
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyLinks from a JSON string
policy_links_instance = PolicyLinks.from_json(json)
# print the JSON string representation of the object
print(PolicyLinks.to_json())
# convert the object into a dict
policy_links_dict = policy_links_instance.to_dict()
# create an instance of PolicyLinks from a dict
policy_links_from_dict = PolicyLinks.from_dict(policy_links_dict)