Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.36 KB

File metadata and controls

35 lines (26 loc) · 1.36 KB

FlowErrorChallenge

Challenge class when an unhandled error occurs during a stage. Normal users are shown an error message, superusers are shown a full stacktrace.

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-flow-error']
response_errors Dict[str, List[ErrorDetail]] [optional]
request_id str
error str [optional]
traceback str [optional]

Example

from authentik_client.models.flow_error_challenge import FlowErrorChallenge

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

# convert the object into a dict
flow_error_challenge_dict = flow_error_challenge_instance.to_dict()
# create an instance of FlowErrorChallenge from a dict
flow_error_challenge_from_dict = FlowErrorChallenge.from_dict(flow_error_challenge_dict)

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