[][src]Struct google_tagmanager1::Environment

pub struct Environment {
    pub authorization_code: Option<String>,
    pub description: Option<String>,
    pub environment_id: Option<String>,
    pub url: Option<String>,
    pub enable_debug: Option<bool>,
    pub container_id: Option<String>,
    pub authorization_timestamp_ms: Option<String>,
    pub container_version_id: Option<String>,
    pub fingerprint: Option<String>,
    pub account_id: Option<String>,
    pub type_: Option<String>,
    pub name: Option<String>,
}

Represents a Google Tag Manager Environment. Note that a user can create, delete and update environments of type USER, but can only update the enable_debug and url fields of environments of other types.

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

authorization_code: Option<String>

The environment authorization code.

description: Option<String>

The environment description. Can be set or changed only on USER type environments. @mutable tagmanager.accounts.containers.environments.create @mutable tagmanager.accounts.containers.environments.update

environment_id: Option<String>

GTM Environment ID uniquely identifies the GTM Environment.

url: Option<String>

Default preview page url for the environment. @mutable tagmanager.accounts.containers.environments.create @mutable tagmanager.accounts.containers.environments.update

enable_debug: Option<bool>

Whether or not to enable debug by default on for the environment. @mutable tagmanager.accounts.containers.environments.create @mutable tagmanager.accounts.containers.environments.update

container_id: Option<String>

GTM Container ID.

authorization_timestamp_ms: Option<String>

The last update time-stamp for the authorization code.

container_version_id: Option<String>

no description provided

fingerprint: Option<String>

The fingerprint of the GTM environment as computed at storage time. This value is recomputed whenever the environment is modified.

account_id: Option<String>

GTM Account ID.

type_: Option<String>

The type of this environment.

name: Option<String>

The environment display name. Can be set or changed only on USER type environments. @mutable tagmanager.accounts.containers.environments.create @mutable tagmanager.accounts.containers.environments.update

Trait Implementations

impl Clone for Environment[src]

impl Debug for Environment[src]

impl Default for Environment[src]

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

impl RequestValue for Environment[src]

impl ResponseResult for Environment[src]

impl Serialize for Environment[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