Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.28 KB

File metadata and controls

35 lines (26 loc) · 1.28 KB

AutosubmitChallenge

Autosubmit challenge used to send and navigate a POST request

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-autosubmit']
response_errors Dict[str, List[ErrorDetail]] [optional]
url str
attrs Dict[str, str]
title str [optional]

Example

from authentik_client.models.autosubmit_challenge import AutosubmitChallenge

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

# convert the object into a dict
autosubmit_challenge_dict = autosubmit_challenge_instance.to_dict()
# create an instance of AutosubmitChallenge from a dict
autosubmit_challenge_from_dict = AutosubmitChallenge.from_dict(autosubmit_challenge_dict)

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