Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

GroupKerberosSourceConnectionRequest

Group Source Connection

Properties

Name Type Description Notes
group UUID
source UUID
identifier str

Example

from authentik_client.models.group_kerberos_source_connection_request import GroupKerberosSourceConnectionRequest

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

# convert the object into a dict
group_kerberos_source_connection_request_dict = group_kerberos_source_connection_request_instance.to_dict()
# create an instance of GroupKerberosSourceConnectionRequest from a dict
group_kerberos_source_connection_request_from_dict = GroupKerberosSourceConnectionRequest.from_dict(group_kerberos_source_connection_request_dict)

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