Group Source Connection
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| group | UUID | ||
| source | UUID | ||
| source_obj | Source | [readonly] | |
| identifier | str | ||
| created | datetime | [readonly] | |
| last_updated | datetime | [readonly] |
from authentik_client.models.group_o_auth_source_connection import GroupOAuthSourceConnection
# TODO update the JSON string below
json = "{}"
# create an instance of GroupOAuthSourceConnection from a JSON string
group_o_auth_source_connection_instance = GroupOAuthSourceConnection.from_json(json)
# print the JSON string representation of the object
print(GroupOAuthSourceConnection.to_json())
# convert the object into a dict
group_o_auth_source_connection_dict = group_o_auth_source_connection_instance.to_dict()
# create an instance of GroupOAuthSourceConnection from a dict
group_o_auth_source_connection_from_dict = GroupOAuthSourceConnection.from_dict(group_o_auth_source_connection_dict)