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

ClickThroughUrl

import type { ClickThroughUrl } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Click-through URL

interface ClickThroughUrl {
computedClickThroughUrl?: string;
customClickThroughUrl?: string;
defaultLandingPage?: boolean;
landingPageId?: bigint;
}

§Properties

§
computedClickThroughUrl?: string
[src]

Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows: - If defaultLandingPage is enabled then the campaign's default landing page URL is assigned to this field. - If defaultLandingPage is not enabled and a landingPageId is specified then that landing page's URL is assigned to this field. - If neither of the above cases apply, then the customClickThroughUrl is assigned to this field.

§
customClickThroughUrl?: string
[src]

Custom click-through URL. Applicable if the defaultLandingPage field is set to false and the landingPageId field is left unset.

§
defaultLandingPage?: boolean
[src]

Whether the campaign default landing page is used.

§
landingPageId?: bigint
[src]

ID of the landing page for the click-through URL. Applicable if the defaultLandingPage field is set to false.