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_telegram_source_connection import GroupTelegramSourceConnection
# TODO update the JSON string below
json = "{}"
# create an instance of GroupTelegramSourceConnection from a JSON string
group_telegram_source_connection_instance = GroupTelegramSourceConnection.from_json(json)
# print the JSON string representation of the object
print(GroupTelegramSourceConnection.to_json())
# convert the object into a dict
group_telegram_source_connection_dict = group_telegram_source_connection_instance.to_dict()
# create an instance of GroupTelegramSourceConnection from a dict
group_telegram_source_connection_from_dict = GroupTelegramSourceConnection.from_dict(group_telegram_source_connection_dict)