Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

File metadata and controls

36 lines (27 loc) · 1.26 KB

UserLDAPSourceConnection

User source connection

Properties

Name Type Description Notes
pk int [readonly]
user int
source UUID
source_obj Source [readonly]
identifier str
created datetime [readonly]
last_updated datetime [readonly]

Example

from authentik_client.models.user_ldap_source_connection import UserLDAPSourceConnection

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

# convert the object into a dict
user_ldap_source_connection_dict = user_ldap_source_connection_instance.to_dict()
# create an instance of UserLDAPSourceConnection from a dict
user_ldap_source_connection_from_dict = UserLDAPSourceConnection.from_dict(user_ldap_source_connection_dict)

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