Struct google_tagmanager2::Tag[][src]

pub struct Tag {
    pub schedule_start_ms: Option<String>,
    pub schedule_end_ms: Option<String>,
    pub container_id: Option<String>,
    pub tag_firing_option: Option<String>,
    pub tag_id: Option<String>,
    pub paused: Option<bool>,
    pub setup_tag: Option<Vec<SetupTag>>,
    pub blocking_rule_id: Option<Vec<String>>,
    pub tag_manager_url: Option<String>,
    pub fingerprint: Option<String>,
    pub firing_rule_id: Option<Vec<String>>,
    pub path: Option<String>,
    pub teardown_tag: Option<Vec<TeardownTag>>,
    pub account_id: Option<String>,
    pub firing_trigger_id: Option<Vec<String>>,
    pub name: Option<String>,
    pub parameter: Option<Vec<Parameter>>,
    pub notes: Option<String>,
    pub blocking_trigger_id: Option<Vec<String>>,
    pub priority: Option<Parameter>,
    pub workspace_id: Option<String>,
    pub live_only: Option<bool>,
    pub type_: Option<String>,
    pub parent_folder_id: Option<String>,
}

Represents a Google Tag Manager Tag.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The start timestamp in milliseconds to schedule a tag.

The end timestamp in milliseconds to schedule a tag.

GTM Container ID.

Option to fire this tag.

The Tag ID uniquely identifies the GTM Tag.

Indicates whether the tag is paused, which prevents the tag from firing.

The list of setup tags. Currently we only allow one.

Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.

Auto generated link to the tag manager UI

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

Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.

GTM Tag's API relative path.

The list of teardown tags. Currently we only allow one.

GTM Account ID.

Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.

Tag display name.

The tag's parameters.

User notes on how to apply this tag in the container.

Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.

User defined numeric priority of the tag. Tags are fired asynchronously in order of priority. Tags with higher numeric value fire first. A tag's priority can be a positive or negative value. The default value is 0.

GTM Workspace ID.

If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).

GTM Tag Type.

Parent folder id.

Trait Implementations

impl Default for Tag
[src]

Returns the "default value" for a type. Read more

impl Clone for Tag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Tag
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Tag
[src]

impl ResponseResult for Tag
[src]

Auto Trait Implementations

impl Send for Tag

impl Sync for Tag