Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.27 KB

File metadata and controls

36 lines (27 loc) · 1.27 KB

GroupPlexSourceConnection

Group Source Connection

Properties

Name Type Description Notes
pk int [readonly]
group UUID
source UUID
source_obj Source [readonly]
identifier str
created datetime [readonly]
last_updated datetime [readonly]

Example

from authentik_client.models.group_plex_source_connection import GroupPlexSourceConnection

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

# convert the object into a dict
group_plex_source_connection_dict = group_plex_source_connection_instance.to_dict()
# create an instance of GroupPlexSourceConnection from a dict
group_plex_source_connection_from_dict = GroupPlexSourceConnection.from_dict(group_plex_source_connection_dict)

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