Autosubmit challenge used to send and navigate a POST request
| 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] |
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)