User source connection
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| user | int | ||
| source | UUID | ||
| source_obj | Source | [readonly] | |
| identifier | str | ||
| created | datetime | [readonly] | |
| last_updated | datetime | [readonly] |
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)