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

AdClient

import type { AdClient } from "https://googleapis.deno.dev/v1/adsense:v2.ts";

Representation of an ad client. An ad client represents a user's subscription with a specific AdSense product.

interface AdClient {
readonly name?: string;
readonly productCode?: string;
readonly reportingDimensionId?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "READY"
| "GETTING_READY"
| "REQUIRES_REVIEW";
}

§Properties

§
readonly name?: string
[src]

Output only. Resource name of the ad client. Format: accounts/{account}/adclients/{adclient}

§
readonly productCode?: string
[src]

Output only. Reporting product code of the ad client. For example, "AFC" for AdSense for Content. Corresponds to the PRODUCT_CODE dimension, and present only if the ad client supports reporting.

§
readonly reportingDimensionId?: string
[src]

Output only. Unique ID of the ad client as used in the AD_CLIENT_ID reporting dimension. Present only if the ad client supports reporting.

§
readonly state?: "STATE_UNSPECIFIED" | "READY" | "GETTING_READY" | "REQUIRES_REVIEW"
[src]

Output only. State of the ad client.