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

DestinationNotWorkingEvidence

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

Evidence of the creative's destination URL not functioning properly or having been incorrectly set up.

interface DestinationNotWorkingEvidence {
dnsError?: "DNS_ERROR_UNSPECIFIED" | "ERROR_DNS" | "GOOGLE_CRAWLER_DNS_ISSUE";
expandedUrl?: string;
httpError?: number;
invalidPage?: "INVALID_PAGE_UNSPECIFIED" | "EMPTY_OR_ERROR_PAGE";
lastCheckTime?: Date;
platform?:
| "PLATFORM_UNSPECIFIED"
| "PERSONAL_COMPUTER"
| "ANDROID"
| "IOS";
redirectionError?:
| "REDIRECTION_ERROR_UNSPECIFIED"
| "TOO_MANY_REDIRECTS"
| "INVALID_REDIRECT"
| "EMPTY_REDIRECT"
| "REDIRECT_ERROR_UNKNOWN";
urlRejected?:
| "URL_REJECTED_UNSPECIFIED"
| "BAD_REQUEST"
| "MALFORMED_URL"
| "URL_REJECTED_UNKNOWN";
}

§Properties

§
dnsError?: "DNS_ERROR_UNSPECIFIED" | "ERROR_DNS" | "GOOGLE_CRAWLER_DNS_ISSUE"
[src]

DNS lookup errors.

§
expandedUrl?: string
[src]

The full non-working URL.

§
httpError?: number
[src]

HTTP error code (for example, 404 or 5xx)

§
invalidPage?: "INVALID_PAGE_UNSPECIFIED" | "EMPTY_OR_ERROR_PAGE"
[src]

Page was crawled successfully, but was detected as either a page with no content or an error page.

§
lastCheckTime?: Date
[src]

Approximate time when the ad destination was last checked.

§
platform?: "PLATFORM_UNSPECIFIED" | "PERSONAL_COMPUTER" | "ANDROID" | "IOS"
[src]

Platform of the non-working URL.

§
redirectionError?: "REDIRECTION_ERROR_UNSPECIFIED" | "TOO_MANY_REDIRECTS" | "INVALID_REDIRECT" | "EMPTY_REDIRECT" | "REDIRECT_ERROR_UNKNOWN"
[src]

HTTP redirect chain error.

§
urlRejected?: "URL_REJECTED_UNSPECIFIED" | "BAD_REQUEST" | "MALFORMED_URL" | "URL_REJECTED_UNKNOWN"
[src]

Rejected because of malformed URLs or invalid requests.