[][src]Struct google_tagmanager2::Client

pub struct Client {
    pub name: Option<String>,
    pub parameter: Option<Vec<Parameter>>,
    pub client_id: Option<String>,
    pub priority: Option<i32>,
    pub container_id: Option<String>,
    pub workspace_id: Option<String>,
    pub tag_manager_url: Option<String>,
    pub fingerprint: Option<String>,
    pub path: Option<String>,
    pub type_: Option<String>,
    pub account_id: Option<String>,
}

There is no detailed description.

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

Fields

name: Option<String>

Client display name. @mutable tagmanager.accounts.containers.workspaces.clients.create @mutable tagmanager.accounts.containers.workspaces.clients.update

parameter: Option<Vec<Parameter>>

The client's parameters. @mutable tagmanager.accounts.containers.workspaces.clients.create @mutable tagmanager.accounts.containers.workspaces.clients.update

client_id: Option<String>

The Client ID uniquely identifies the GTM client.

priority: Option<i32>

Priority determines relative firing order. @mutable tagmanager.accounts.containers.workspaces.clients.create @mutable tagmanager.accounts.containers.workspaces.clients.update

container_id: Option<String>

GTM Container ID.

workspace_id: Option<String>

GTM Workspace ID.

tag_manager_url: Option<String>

Auto generated link to the tag manager UI

fingerprint: Option<String>

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

path: Option<String>

GTM client's API relative path.

type_: Option<String>

Client type. @mutable tagmanager.accounts.containers.workspaces.clients.create @mutable tagmanager.accounts.containers.workspaces.clients.update

account_id: Option<String>

GTM Account ID.

Trait Implementations

impl Clone for Client[src]

impl Debug for Client[src]

impl Default for Client[src]

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

impl Part for Client[src]

impl Serialize for Client[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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