Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

LDAPCheckAccess

Base serializer class which doesn't implement create/update methods

Properties

Name Type Description Notes
has_search_permission bool [optional]
access PolicyTestResult

Example

from authentik_client.models.ldap_check_access import LDAPCheckAccess

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

# convert the object into a dict
ldap_check_access_dict = ldap_check_access_instance.to_dict()
# create an instance of LDAPCheckAccess from a dict
ldap_check_access_from_dict = LDAPCheckAccess.from_dict(ldap_check_access_dict)

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