Email challenge
| Name | Type | Description | Notes |
|---|---|---|---|
| flow_info | ContextualFlowInfo | [optional] | |
| component | str | [optional] [default to 'ak-stage-email'] | |
| response_errors | Dict[str, List[ErrorDetail]] | [optional] |
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)