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

GtagConfig

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

Represents a Google tag configuration.

interface GtagConfig {
accountId?: string;
containerId?: string;
fingerprint?: string;
gtagConfigId?: string;
parameter?: Parameter[];
path?: string;
tagManagerUrl?: string;
type?: string;
workspaceId?: string;
}

§Properties

§
accountId?: string
[src]

Google tag account ID.

§
containerId?: string
[src]

Google tag container ID.

§
fingerprint?: string
[src]

The fingerprint of the Google tag config as computed at storage time. This value is recomputed whenever the config is modified.

§
gtagConfigId?: string
[src]

The ID uniquely identifies the Google tag config.

§
parameter?: Parameter[]
[src]

The Google tag config's parameters. @mutable tagmanager.accounts.containers.workspaces.gtag_config.create @mutable tagmanager.accounts.containers.workspaces.gtag_config.update

§
path?: string
[src]

Google tag config's API relative path.

§
tagManagerUrl?: string
[src]

Auto generated link to the tag manager UI

§
type?: string
[src]

Google tag config type. @required tagmanager.accounts.containers.workspaces.gtag_config.create @required tagmanager.accounts.containers.workspaces.gtag_config.update @mutable tagmanager.accounts.containers.workspaces.gtag_config.create @mutable tagmanager.accounts.containers.workspaces.gtag_config.update

§
workspaceId?: string
[src]

Google tag workspace ID. Only used by GTM containers. Set to 0 otherwise.