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

HttpCookieEvidence

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

Evidence for HTTP cookie-related policy violations.

interface HttpCookieEvidence {
cookieNames?: string[];
maxCookieCount?: number;
}

§Properties

§
cookieNames?: string[]
[src]

Names of cookies that violate Google policies. For TOO_MANY_COOKIES policy, this will be the cookie names of top domains with the largest number of cookies. For other policies, this will be all the cookie names that violate the policy.

§
maxCookieCount?: number
[src]

The largest number of cookies set by a creative. If this field is set, cookie_names above will be set to the cookie names of top domains with the largest number of cookies. This field will only be set for TOO_MANY_COOKIES policy.