Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

File metadata and controls

33 lines (24 loc) · 1.11 KB

ShellChallenge

challenge type to render HTML as-is

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'xak-flow-shell']
response_errors Dict[str, List[ErrorDetail]] [optional]
body str

Example

from authentik_client.models.shell_challenge import ShellChallenge

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

# convert the object into a dict
shell_challenge_dict = shell_challenge_instance.to_dict()
# create an instance of ShellChallenge from a dict
shell_challenge_from_dict = ShellChallenge.from_dict(shell_challenge_dict)

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