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

Entity

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

A workspace entity that may represent a tag, trigger, variable, or folder in addition to its status in the workspace.

interface Entity {
builtInVariable?: BuiltInVariable;
changeStatus?:
| "changeStatusUnspecified"
| "none"
| "added"
| "deleted"
| "updated";
client?: Client;
customTemplate?: CustomTemplate;
folder?: Folder;
gtagConfig?: GtagConfig;
tag?: Tag;
transformation?: Transformation;
trigger?: Trigger;
variable?: Variable;
zone?: Zone;
}

§Properties

§
builtInVariable?: BuiltInVariable
[src]

The built in variable being represented by the entity.

§
changeStatus?: "changeStatusUnspecified" | "none" | "added" | "deleted" | "updated"
[src]

Represents how the entity has been changed in the workspace.

§
client?: Client
[src]

The client being represented by the entity.

§
customTemplate?: CustomTemplate
[src]

The custom template being represented by the entity.

§
folder?: Folder
[src]

The folder being represented by the entity.

§
gtagConfig?: GtagConfig
[src]

The gtag config being represented by the entity.

§
tag?: Tag
[src]

The tag being represented by the entity.

§
transformation?: Transformation
[src]

The transformation being represented by the entity.

§
trigger?: Trigger
[src]

The trigger being represented by the entity.

§
variable?: Variable
[src]

The variable being represented by the entity.

§
zone?: Zone
[src]

The zone being represented by the entity.