Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.34 KB

File metadata and controls

33 lines (24 loc) · 1.34 KB

PatchedUserPlexSourceConnectionRequest

User source connection

Properties

Name Type Description Notes
user int [optional]
source UUID [optional]
identifier str [optional]
plex_token str [optional]

Example

from authentik_client.models.patched_user_plex_source_connection_request import PatchedUserPlexSourceConnectionRequest

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

# convert the object into a dict
patched_user_plex_source_connection_request_dict = patched_user_plex_source_connection_request_instance.to_dict()
# create an instance of PatchedUserPlexSourceConnectionRequest from a dict
patched_user_plex_source_connection_request_from_dict = PatchedUserPlexSourceConnectionRequest.from_dict(patched_user_plex_source_connection_request_dict)

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