Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

PropertyMappingTestResult

Result of a Property-mapping test

Properties

Name Type Description Notes
result str [readonly]
successful bool [readonly]

Example

from authentik_client.models.property_mapping_test_result import PropertyMappingTestResult

# TODO update the JSON string below
json = "{}"
# create an instance of PropertyMappingTestResult from a JSON string
property_mapping_test_result_instance = PropertyMappingTestResult.from_json(json)
# print the JSON string representation of the object
print(PropertyMappingTestResult.to_json())

# convert the object into a dict
property_mapping_test_result_dict = property_mapping_test_result_instance.to_dict()
# create an instance of PropertyMappingTestResult from a dict
property_mapping_test_result_from_dict = PropertyMappingTestResult.from_dict(property_mapping_test_result_dict)

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