challenge type to render HTML as-is
| 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 |
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)