User source connection
| Name | Type | Description | Notes |
|---|---|---|---|
| user | int | [optional] | |
| source | UUID | [optional] | |
| identifier | str | [optional] |
from authentik_client.models.patched_user_kerberos_source_connection_request import PatchedUserKerberosSourceConnectionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedUserKerberosSourceConnectionRequest from a JSON string
patched_user_kerberos_source_connection_request_instance = PatchedUserKerberosSourceConnectionRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedUserKerberosSourceConnectionRequest.to_json())
# convert the object into a dict
patched_user_kerberos_source_connection_request_dict = patched_user_kerberos_source_connection_request_instance.to_dict()
# create an instance of PatchedUserKerberosSourceConnectionRequest from a dict
patched_user_kerberos_source_connection_request_from_dict = PatchedUserKerberosSourceConnectionRequest.from_dict(patched_user_kerberos_source_connection_request_dict)