Test property mapping execution for a user/group with context
| Name | Type | Description | Notes |
|---|---|---|---|
| user | int | [optional] | |
| context | Dict[str, object] | [optional] | |
| group | UUID | [optional] |
from authentik_client.models.property_mapping_test_request import PropertyMappingTestRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PropertyMappingTestRequest from a JSON string
property_mapping_test_request_instance = PropertyMappingTestRequest.from_json(json)
# print the JSON string representation of the object
print(PropertyMappingTestRequest.to_json())
# convert the object into a dict
property_mapping_test_request_dict = property_mapping_test_request_instance.to_dict()
# create an instance of PropertyMappingTestRequest from a dict
property_mapping_test_request_from_dict = PropertyMappingTestRequest.from_dict(property_mapping_test_request_dict)