pub struct ContainerVersionHeader {Show 16 fields
pub account_id: Option<String>,
pub container_id: Option<String>,
pub container_version_id: Option<String>,
pub deleted: Option<bool>,
pub name: Option<String>,
pub num_clients: Option<String>,
pub num_custom_templates: Option<String>,
pub num_gtag_configs: Option<String>,
pub num_macros: Option<String>,
pub num_rules: Option<String>,
pub num_tags: Option<String>,
pub num_transformations: Option<String>,
pub num_triggers: Option<String>,
pub num_variables: Option<String>,
pub num_zones: Option<String>,
pub path: Option<String>,
}
Expand description
Represents a Google Tag Manager Container Version Header.
§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 version_headers latest accounts (response)
Fields§
§account_id: Option<String>
GTM Account ID.
container_id: Option<String>
GTM Container ID.
container_version_id: Option<String>
The Container Version ID uniquely identifies the GTM Container Version.
deleted: Option<bool>
A value of true indicates this container version has been deleted.
name: Option<String>
Container version display name.
num_clients: Option<String>
Number of clients in the container version.
num_custom_templates: Option<String>
Number of custom templates in the container version.
num_gtag_configs: Option<String>
Number of Google tag configs in the container version.
num_macros: Option<String>
Number of macros in the container version.
num_rules: Option<String>
Number of rules in the container version.
Number of tags in the container version.
num_transformations: Option<String>
Number of transformations in the container version.
num_triggers: Option<String>
Number of triggers in the container version.
num_variables: Option<String>
Number of variables in the container version.
num_zones: Option<String>
Number of zones in the container version.
path: Option<String>
GTM Container Version’s API relative path.
Trait Implementations§
Source§impl Clone for ContainerVersionHeader
impl Clone for ContainerVersionHeader
Source§fn clone(&self) -> ContainerVersionHeader
fn clone(&self) -> ContainerVersionHeader
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ContainerVersionHeader
impl Debug for ContainerVersionHeader
Source§impl Default for ContainerVersionHeader
impl Default for ContainerVersionHeader
Source§fn default() -> ContainerVersionHeader
fn default() -> ContainerVersionHeader
Source§impl<'de> Deserialize<'de> for ContainerVersionHeader
impl<'de> Deserialize<'de> for ContainerVersionHeader
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 ContainerVersionHeader
impl Serialize for ContainerVersionHeader
impl ResponseResult for ContainerVersionHeader
Auto Trait Implementations§
impl Freeze for ContainerVersionHeader
impl RefUnwindSafe for ContainerVersionHeader
impl Send for ContainerVersionHeader
impl Sync for ContainerVersionHeader
impl Unpin for ContainerVersionHeader
impl UnwindSafe for ContainerVersionHeader
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