Struct google_tagmanager2::ContainerVersion[][src]

pub struct ContainerVersion {
    pub container_id: Option<String>,
    pub deleted: Option<bool>,
    pub tag: Option<Vec<Tag>>,
    pub tag_manager_url: Option<String>,
    pub container_version_id: Option<String>,
    pub fingerprint: Option<String>,
    pub variable: Option<Vec<Variable>>,
    pub path: Option<String>,
    pub account_id: Option<String>,
    pub container: Option<Container>,
    pub name: Option<String>,
    pub zone: Option<Vec<Zone>>,
    pub description: Option<String>,
    pub built_in_variable: Option<Vec<BuiltInVariable>>,
    pub trigger: Option<Vec<Trigger>>,
    pub folder: Option<Vec<Folder>>,
}

Represents a Google Tag Manager Container Version.

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

GTM Container ID.

A value of true indicates this container version has been deleted.

The tags in the container that this version was taken from.

Auto generated link to the tag manager UI

The Container Version ID uniquely identifies the GTM Container Version.

The fingerprint of the GTM Container Version as computed at storage time. This value is recomputed whenever the container version is modified.

The variables in the container that this version was taken from.

GTM ContainerVersions's API relative path.

GTM Account ID.

The container that this version was taken from.

Container version display name.

The zones in the container that this version was taken from.

Container version description.

The built-in variables in the container that this version was taken from.

The triggers in the container that this version was taken from.

The folders in the container that this version was taken from.

Trait Implementations

impl Default for ContainerVersion
[src]

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

impl Clone for ContainerVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContainerVersion
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ContainerVersion
[src]

impl ResponseResult for ContainerVersion
[src]

Auto Trait Implementations