| Name | Type | Description | Notes |
|---|---|---|---|
| resource_id | str | Policy ID of the app sign-in policy that you want to map | [optional] |
| resource_type | PolicyMappingResourceType | [optional] |
from okta.models.policy_mapping_request import PolicyMappingRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyMappingRequest from a JSON string
policy_mapping_request_instance = PolicyMappingRequest.from_json(json)
# print the JSON string representation of the object
print(PolicyMappingRequest.to_json())
# convert the object into a dict
policy_mapping_request_dict = policy_mapping_request_instance.to_dict()
# create an instance of PolicyMappingRequest from a dict
policy_mapping_request_from_dict = PolicyMappingRequest.from_dict(policy_mapping_request_dict)