Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

EmailChallengeResponseRequest

Email challenge resposen. No fields. This challenge is always declared invalid to give the user a chance to retry

Properties

Name Type Description Notes
component str [optional] [default to 'ak-stage-email']

Example

from authentik_client.models.email_challenge_response_request import EmailChallengeResponseRequest

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

# convert the object into a dict
email_challenge_response_request_dict = email_challenge_response_request_instance.to_dict()
# create an instance of EmailChallengeResponseRequest from a dict
email_challenge_response_request_from_dict = EmailChallengeResponseRequest.from_dict(email_challenge_response_request_dict)

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