Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CaptchaResponse

import type { CaptchaResponse } from "https://aws-api.deno.dev/v0.4/services/wafv2.ts?docs=full";

The result from the inspection of the web request for a valid CAPTCHA token.

interface CaptchaResponse {
FailureReason?: FailureReason | null;
ResponseCode?: number | null;
SolveTimestamp?: number | null;
}

§Properties

§
FailureReason?: FailureReason | null
[src]

The reason for failure, populated when the evaluation of the token fails.

§
ResponseCode?: number | null
[src]

The HTTP response code indicating the status of the CAPTCHA token in the web request. If the token is missing, invalid, or expired, this code is 405 Method Not Allowed.

§
SolveTimestamp?: number | null
[src]

The time that the CAPTCHA was last solved for the supplied token.