Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

PatchedUserLDAPSourceConnectionRequest

User source connection

Properties

Name Type Description Notes
user int [optional]
source UUID [optional]
identifier str [optional]

Example

from authentik_client.models.patched_user_ldap_source_connection_request import PatchedUserLDAPSourceConnectionRequest

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

# convert the object into a dict
patched_user_ldap_source_connection_request_dict = patched_user_ldap_source_connection_request_instance.to_dict()
# create an instance of PatchedUserLDAPSourceConnectionRequest from a dict
patched_user_ldap_source_connection_request_from_dict = PatchedUserLDAPSourceConnectionRequest.from_dict(patched_user_ldap_source_connection_request_dict)

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