Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

RedirectChallenge

Challenge type to redirect the client

Properties

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

Example

from authentik_client.models.redirect_challenge import RedirectChallenge

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

# convert the object into a dict
redirect_challenge_dict = redirect_challenge_instance.to_dict()
# create an instance of RedirectChallenge from a dict
redirect_challenge_from_dict = RedirectChallenge.from_dict(redirect_challenge_dict)

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