Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

EmailChallenge

Email challenge

Properties

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

Example

from authentik_client.models.email_challenge import EmailChallenge

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

# convert the object into a dict
email_challenge_dict = email_challenge_instance.to_dict()
# create an instance of EmailChallenge from a dict
email_challenge_from_dict = EmailChallenge.from_dict(email_challenge_dict)

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