Variable
import type { Variable } from "https://googleapis.deno.dev/v1/tagmanager:v2.ts";
Represents a Google Tag Manager Variable.
interface Variable {
accountId?: string;
containerId?: string;
disablingTriggerId?: string[];
enablingTriggerId?: string[];
fingerprint?: string;
formatValue?: VariableFormatValue;
name?: string;
notes?: string;
parameter?: Parameter[];
parentFolderId?: string;
path?: string;
scheduleEndMs?: bigint;
scheduleStartMs?: bigint;
tagManagerUrl?: string;
type?: string;
variableId?: string;
workspaceId?: string;
}§Properties
§
disablingTriggerId?: string[]
[src]For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.
§
enablingTriggerId?: string[]
[src]For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.
§
fingerprint?: string
[src]The fingerprint of the GTM Variable as computed at storage time. This value is recomputed whenever the variable is modified.
§
formatValue?: VariableFormatValue
[src]Option to convert a variable value to other value.