Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 965 Bytes

File metadata and controls

31 lines (22 loc) · 965 Bytes

LDAPDebug

Properties

Name Type Description Notes
user List[Dict[str, object]] [readonly]
group List[Dict[str, object]] [readonly]
membership List[Dict[str, object]] [readonly]

Example

from authentik_client.models.ldap_debug import LDAPDebug

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

# convert the object into a dict
ldap_debug_dict = ldap_debug_instance.to_dict()
# create an instance of LDAPDebug from a dict
ldap_debug_from_dict = LDAPDebug.from_dict(ldap_debug_dict)

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