You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Country filter type (country_is, country_is_not, any)
[optional]
country_is
List[str]
Allowed countries
[optional]
country_is_not
List[str]
Excluded countries
[optional]
method
str
Method filter type (method_is, method_is_not, any)
[optional]
method_is
List[str]
Allowed HTTP methods
[optional]
method_is_not
List[str]
Excluded HTTP methods
[optional]
ip
str
IP filter type (ip_is, ip_is_not, any)
[optional]
ip_is
List[str]
Allowed IP addresses
[optional]
ip_is_not
List[str]
Excluded IP addresses
[optional]
robot_challenge_type
str
Challenge type (invisible or checkbox)
robot_challenge_verification_ttl
int
Verification TTL in seconds
[optional] [default to 10800]
robot_challenge_challenge_ttl
int
Challenge TTL in seconds
[optional] [default to 30]
Example
fromquantcdn.models.v2_rule_bot_challenge_requestimportV2RuleBotChallengeRequest# TODO update the JSON string belowjson="{}"# create an instance of V2RuleBotChallengeRequest from a JSON stringv2_rule_bot_challenge_request_instance=V2RuleBotChallengeRequest.from_json(json)
# print the JSON string representation of the objectprint(V2RuleBotChallengeRequest.to_json())
# convert the object into a dictv2_rule_bot_challenge_request_dict=v2_rule_bot_challenge_request_instance.to_dict()
# create an instance of V2RuleBotChallengeRequest from a dictv2_rule_bot_challenge_request_from_dict=V2RuleBotChallengeRequest.from_dict(v2_rule_bot_challenge_request_dict)