[][src]Struct google_tagmanager2::BuiltInVariable

pub struct BuiltInVariable {
    pub workspace_id: Option<String>,
    pub container_id: Option<String>,
    pub path: Option<String>,
    pub account_id: Option<String>,
    pub type_: Option<String>,
    pub name: Option<String>,
}

Built-in variables are a special category of variables that are pre-created and non-customizable. They provide common functionality like accessing propeties of the gtm data layer, monitoring clicks, or accessing elements of a page URL.

This type is not used in any activity, and only used as part of another schema.

Fields

workspace_id: Option<String>

GTM Workspace ID.

container_id: Option<String>

GTM Container ID.

path: Option<String>

GTM BuiltInVariable's API relative path.

account_id: Option<String>

GTM Account ID.

type_: Option<String>

Type of built-in variable. @required.tagmanager.accounts.containers.workspaces.built_in_variable.update @mutable tagmanager.accounts.containers.workspaces.built_in_variable.update

name: Option<String>

Name of the built-in variable to be used to refer to the built-in variable.

Trait Implementations

impl Clone for BuiltInVariable[src]

impl Debug for BuiltInVariable[src]

impl Default for BuiltInVariable[src]

impl<'de> Deserialize<'de> for BuiltInVariable[src]

impl Part for BuiltInVariable[src]

impl Serialize for BuiltInVariable[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any