Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.33 KB

File metadata and controls

35 lines (26 loc) · 1.33 KB

AccessDeniedChallenge

Challenge when a flow's active stage calls stage_invalid().

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-access-denied']
response_errors Dict[str, List[ErrorDetail]] [optional]
pending_user str
pending_user_avatar str
error_message str [optional]

Example

from authentik_client.models.access_denied_challenge import AccessDeniedChallenge

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

# convert the object into a dict
access_denied_challenge_dict = access_denied_challenge_instance.to_dict()
# create an instance of AccessDeniedChallenge from a dict
access_denied_challenge_from_dict = AccessDeniedChallenge.from_dict(access_denied_challenge_dict)

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