Plex Source Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Source's display Name. | [optional] |
| slug | str | Internal source name, used in URLs. | [optional] |
| enabled | bool | [optional] | |
| promoted | bool | When enabled, this source will be displayed as a prominent button on the login page, instead of a small icon. | [optional] |
| authentication_flow | UUID | Flow to use when authenticating existing users. | [optional] |
| enrollment_flow | UUID | Flow to use when enrolling new users. | [optional] |
| user_property_mappings | List[UUID] | [optional] | |
| group_property_mappings | List[UUID] | [optional] | |
| policy_engine_mode | PolicyEngineMode | [optional] | |
| user_matching_mode | UserMatchingModeEnum | How the source determines if an existing user should be authenticated or a new user enrolled. | [optional] |
| user_path_template | str | [optional] | |
| icon | str | [optional] | |
| group_matching_mode | GroupMatchingModeEnum | How the source determines if an existing group should be used or a new group created. | [optional] |
| client_id | str | Client identifier used to talk to Plex. | [optional] |
| allowed_servers | List[str] | Which servers a user has to be a member of to be granted access. Empty list allows every server. | [optional] |
| allow_friends | bool | Allow friends to authenticate, even if you don't share a server. | [optional] |
| plex_token | str | Plex token used to check friends | [optional] |
from authentik_client.models.patched_plex_source_request import PatchedPlexSourceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedPlexSourceRequest from a JSON string
patched_plex_source_request_instance = PatchedPlexSourceRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedPlexSourceRequest.to_json())
# convert the object into a dict
patched_plex_source_request_dict = patched_plex_source_request_instance.to_dict()
# create an instance of PatchedPlexSourceRequest from a dict
patched_plex_source_request_from_dict = PatchedPlexSourceRequest.from_dict(patched_plex_source_request_dict)