Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.61 KB

File metadata and controls

38 lines (29 loc) · 1.61 KB

CaptchaStageRequest

CaptchaStage Serializer

Properties

Name Type Description Notes
name str
public_key str Public key, acquired your captcha Provider.
private_key str Private key, acquired your captcha Provider.
js_url str [optional]
api_url str [optional]
interactive bool [optional]
score_min_threshold float [optional]
score_max_threshold float [optional]
error_on_invalid_score bool When enabled and the received captcha score is outside of the given threshold, the stage will show an error message. When not enabled, the flow will continue, but the data from the captcha will be available in the context for policy decisions [optional]

Example

from authentik_client.models.captcha_stage_request import CaptchaStageRequest

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

# convert the object into a dict
captcha_stage_request_dict = captcha_stage_request_instance.to_dict()
# create an instance of CaptchaStageRequest from a dict
captcha_stage_request_from_dict = CaptchaStageRequest.from_dict(captcha_stage_request_dict)

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