| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] | |
| application | PolicyMappingLinksAllOfApplication | [optional] | |
| authenticator | PolicyMappingLinksAllOfAuthenticator | [optional] | |
| policy | PolicyMappingLinksAllOfPolicy | [optional] |
from okta.models.policy_mapping_links import PolicyMappingLinks
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyMappingLinks from a JSON string
policy_mapping_links_instance = PolicyMappingLinks.from_json(json)
# print the JSON string representation of the object
print(PolicyMappingLinks.to_json())
# convert the object into a dict
policy_mapping_links_dict = policy_mapping_links_instance.to_dict()
# create an instance of PolicyMappingLinks from a dict
policy_mapping_links_from_dict = PolicyMappingLinks.from_dict(policy_mapping_links_dict)