Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

PropertyMappingTestRequest

Test property mapping execution for a user/group with context

Properties

Name Type Description Notes
user int [optional]
context Dict[str, object] [optional]
group UUID [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]