pub struct ContainerVersion {Show 20 fields
pub account_id: Option<String>,
pub built_in_variable: Option<Vec<BuiltInVariable>>,
pub client: Option<Vec<Client>>,
pub container: Option<Container>,
pub container_id: Option<String>,
pub container_version_id: Option<String>,
pub custom_template: Option<Vec<CustomTemplate>>,
pub deleted: Option<bool>,
pub description: Option<String>,
pub fingerprint: Option<String>,
pub folder: Option<Vec<Folder>>,
pub gtag_config: Option<Vec<GtagConfig>>,
pub name: Option<String>,
pub path: Option<String>,
pub tag: Option<Vec<Tag>>,
pub tag_manager_url: Option<String>,
pub transformation: Option<Vec<Transformation>>,
pub trigger: Option<Vec<Trigger>>,
pub variable: Option<Vec<Variable>>,
pub zone: Option<Vec<Zone>>,
}
Expand description
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).
- containers versions get accounts (response)
- containers versions live accounts (response)
- containers versions set_latest accounts (response)
- containers versions undelete accounts (response)
- containers versions update accounts (request|response)
Fields§
§account_id: Option<String>
GTM Account ID.
built_in_variable: Option<Vec<BuiltInVariable>>
The built-in variables in the container that this version was taken from.
client: Option<Vec<Client>>
The clients in the container that this version was taken from.
container: Option<Container>
The container that this version was taken from.
container_id: Option<String>
GTM Container ID.
container_version_id: Option<String>
The Container Version ID uniquely identifies the GTM Container Version.
custom_template: Option<Vec<CustomTemplate>>
The custom templates in the container that this version was taken from.
deleted: Option<bool>
A value of true indicates this container version has been deleted.
description: Option<String>
Container version description. @mutable tagmanager.accounts.containers.versions.update
fingerprint: Option<String>
The fingerprint of the GTM Container Version as computed at storage time. This value is recomputed whenever the container version is modified.
folder: Option<Vec<Folder>>
The folders in the container that this version was taken from.
gtag_config: Option<Vec<GtagConfig>>
The Google tag configs in the container that this version was taken from.
name: Option<String>
Container version display name. @mutable tagmanager.accounts.containers.versions.update
path: Option<String>
GTM Container Version’s API relative path.
tag: Option<Vec<Tag>>
The tags in the container that this version was taken from.
tag_manager_url: Option<String>
Auto generated link to the tag manager UI
transformation: Option<Vec<Transformation>>
The transformations in the container that this version was taken from.
trigger: Option<Vec<Trigger>>
The triggers in the container that this version was taken from.
variable: Option<Vec<Variable>>
The variables in the container that this version was taken from.
zone: Option<Vec<Zone>>
The zones in the container that this version was taken from.
Trait Implementations§
Source§impl Clone for ContainerVersion
impl Clone for ContainerVersion
Source§fn clone(&self) -> ContainerVersion
fn clone(&self) -> ContainerVersion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ContainerVersion
impl Debug for ContainerVersion
Source§impl Default for ContainerVersion
impl Default for ContainerVersion
Source§fn default() -> ContainerVersion
fn default() -> ContainerVersion
Source§impl<'de> Deserialize<'de> for ContainerVersion
impl<'de> Deserialize<'de> for ContainerVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for ContainerVersion
impl Serialize for ContainerVersion
impl RequestValue for ContainerVersion
impl ResponseResult for ContainerVersion
Auto Trait Implementations§
impl Freeze for ContainerVersion
impl RefUnwindSafe for ContainerVersion
impl Send for ContainerVersion
impl Sync for ContainerVersion
impl Unpin for ContainerVersion
impl UnwindSafe for ContainerVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more