Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

PromptChallenge

Initial challenge being sent, define fields

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-prompt']
response_errors Dict[str, List[ErrorDetail]] [optional]
fields List[StagePrompt]

Example

from authentik_client.models.prompt_challenge import PromptChallenge

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

# convert the object into a dict
prompt_challenge_dict = prompt_challenge_instance.to_dict()
# create an instance of PromptChallenge from a dict
prompt_challenge_from_dict = PromptChallenge.from_dict(prompt_challenge_dict)

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