Site public key
| Name | Type | Description | Notes |
|---|---|---|---|
| flow_info | ContextualFlowInfo | [optional] | |
| component | str | [optional] [default to 'ak-stage-captcha'] | |
| response_errors | Dict[str, List[ErrorDetail]] | [optional] | |
| pending_user | str | ||
| pending_user_avatar | str | ||
| site_key | str | ||
| js_url | str | ||
| interactive | bool |
from authentik_client.models.captcha_challenge import CaptchaChallenge
# TODO update the JSON string below
json = "{}"
# create an instance of CaptchaChallenge from a JSON string
captcha_challenge_instance = CaptchaChallenge.from_json(json)
# print the JSON string representation of the object
print(CaptchaChallenge.to_json())
# convert the object into a dict
captcha_challenge_dict = captcha_challenge_instance.to_dict()
# create an instance of CaptchaChallenge from a dict
captcha_challenge_from_dict = CaptchaChallenge.from_dict(captcha_challenge_dict)