| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| links | PolicyMappingLinks | [optional] |
from okta.models.policy_mapping import PolicyMapping
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyMapping from a JSON string
policy_mapping_instance = PolicyMapping.from_json(json)
# print the JSON string representation of the object
print(PolicyMapping.to_json())
# convert the object into a dict
policy_mapping_dict = policy_mapping_instance.to_dict()
# create an instance of PolicyMapping from a dict
policy_mapping_from_dict = PolicyMapping.from_dict(policy_mapping_dict)