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

BulkCheckResponse

import type { BulkCheckResponse } from "https://googleapis.deno.dev/v1/digitalassetlinks:v1.ts";

Response for BulkCheck call. Results are sent in a list in the same order in which they were sent. Individual check errors are described in the appropriate check_results entry. If the entire call fails, the response will include a bulk_error_code field describing the error.

interface BulkCheckResponse {
bulkErrorCode?:
| "ERROR_CODE_UNSPECIFIED"
| "ERROR_CODE_INVALID_QUERY"
| "ERROR_CODE_FETCH_ERROR"
| "ERROR_CODE_FAILED_SSL_VALIDATION"
| "ERROR_CODE_REDIRECT"
| "ERROR_CODE_TOO_LARGE"
| "ERROR_CODE_MALFORMED_HTTP_RESPONSE"
| "ERROR_CODE_WRONG_CONTENT_TYPE"
| "ERROR_CODE_MALFORMED_CONTENT"
| "ERROR_CODE_SECURE_ASSET_INCLUDES_INSECURE"
| "ERROR_CODE_FETCH_BUDGET_EXHAUSTED";
checkResults?: CheckResponse[];
}

§Properties

§
bulkErrorCode?: "ERROR_CODE_UNSPECIFIED" | "ERROR_CODE_INVALID_QUERY" | "ERROR_CODE_FETCH_ERROR" | "ERROR_CODE_FAILED_SSL_VALIDATION" | "ERROR_CODE_REDIRECT" | "ERROR_CODE_TOO_LARGE" | "ERROR_CODE_MALFORMED_HTTP_RESPONSE" | "ERROR_CODE_WRONG_CONTENT_TYPE" | "ERROR_CODE_MALFORMED_CONTENT" | "ERROR_CODE_SECURE_ASSET_INCLUDES_INSECURE" | "ERROR_CODE_FETCH_BUDGET_EXHAUSTED"
[src]

Error code for the entire request. Present only if the entire request failed. Individual check errors will not trigger the presence of this field.

§
checkResults?: CheckResponse[]
[src]

List of results for each check request. Results are returned in the same order in which they were sent in the request.