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