Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.33 KB

File metadata and controls

34 lines (25 loc) · 1.33 KB

PlexAuthenticationChallenge

Challenge shown to the user in identification stage

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-source-plex']
response_errors Dict[str, List[ErrorDetail]] [optional]
client_id str
slug str

Example

from authentik_client.models.plex_authentication_challenge import PlexAuthenticationChallenge

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

# convert the object into a dict
plex_authentication_challenge_dict = plex_authentication_challenge_instance.to_dict()
# create an instance of PlexAuthenticationChallenge from a dict
plex_authentication_challenge_from_dict = PlexAuthenticationChallenge.from_dict(plex_authentication_challenge_dict)

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