[−][src]Struct google_tagmanager2::Tag
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).
- containers workspaces tags get accounts (response)
- containers workspaces tags update accounts (request|response)
- containers workspaces tags create accounts (request|response)
Fields
schedule_start_ms: Option<String>The start timestamp in milliseconds to schedule a tag. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
schedule_end_ms: Option<String>The end timestamp in milliseconds to schedule a tag. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
container_id: Option<String>GTM Container ID.
tag_firing_option: Option<String>Option to fire this tag.
tag_id: Option<String>The Tag ID uniquely identifies the GTM Tag.
fingerprint: Option<String>The fingerprint of the GTM Tag as computed at storage time. This value is recomputed whenever the tag is modified.
paused: Option<bool>Indicates whether the tag is paused, which prevents the tag from firing. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
setup_tag: Option<Vec<SetupTag>>The list of setup tags. Currently we only allow one.
blocking_rule_id: Option<Vec<String>>Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
monitoring_metadata_tag_name_key: Option<String>If non-empty, then the tag display name will be included in the monitoring metadata map using the key specified. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
tag_manager_url: Option<String>Auto generated link to the tag manager UI
monitoring_metadata: Option<Parameter>A map of key-value pairs of tag metadata to be included in the event data for tag monitoring. Notes:
- This parameter must be type
MAP. - Each parameter in the map are type
TEMPLATE, however cannot contain variable references.
firing_rule_id: Option<Vec<String>>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.
@mutable tagmanager.accounts.containers.workspaces.tags.create
@mutable tagmanager.accounts.containers.workspaces.tags.update
path: Option<String>GTM Tag's API relative path.
teardown_tag: Option<Vec<TeardownTag>>The list of teardown tags. Currently we only allow one.
account_id: Option<String>GTM Account ID.
firing_trigger_id: Option<Vec<String>>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.
@mutable tagmanager.accounts.containers.workspaces.tags.create
@mutable tagmanager.accounts.containers.workspaces.tags.update
name: Option<String>Tag display name. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
parameter: Option<Vec<Parameter>>The tag's parameters. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
notes: Option<String>User notes on how to apply this tag in the container. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
blocking_trigger_id: Option<Vec<String>>Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
priority: Option<Parameter>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. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
workspace_id: Option<String>GTM Workspace ID.
live_only: Option<bool>If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode). @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
type_: Option<String>GTM Tag Type. @mutable tagmanager.accounts.containers.workspaces.tags.create @mutable tagmanager.accounts.containers.workspaces.tags.update
parent_folder_id: Option<String>Parent folder id.
Trait Implementations
impl Clone for Tag[src]
impl Debug for Tag[src]
impl Default for Tag[src]
impl<'de> Deserialize<'de> for Tag[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl RequestValue for Tag[src]
impl ResponseResult for Tag[src]
impl Serialize for Tag[src]
Auto Trait Implementations
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Typeable for T where
T: Any,
T: Any,