LDAP PropertyMapping Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| managed | str | Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. | [optional] |
| name | str | [optional] | |
| expression | str | [optional] |
from authentik_client.models.patched_ldap_source_property_mapping_request import PatchedLDAPSourcePropertyMappingRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedLDAPSourcePropertyMappingRequest from a JSON string
patched_ldap_source_property_mapping_request_instance = PatchedLDAPSourcePropertyMappingRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedLDAPSourcePropertyMappingRequest.to_json())
# convert the object into a dict
patched_ldap_source_property_mapping_request_dict = patched_ldap_source_property_mapping_request_instance.to_dict()
# create an instance of PatchedLDAPSourcePropertyMappingRequest from a dict
patched_ldap_source_property_mapping_request_from_dict = PatchedLDAPSourcePropertyMappingRequest.from_dict(patched_ldap_source_property_mapping_request_dict)