pub struct Workspace {
pub account_id: Option<String>,
pub container_id: Option<String>,
pub description: Option<String>,
pub fingerprint: Option<String>,
pub name: Option<String>,
pub path: Option<String>,
pub tag_manager_url: Option<String>,
pub workspace_id: Option<String>,
}Expand description
Represents a Google Tag Manager Container Workspace.
§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 workspaces create accounts (request|response)
- containers workspaces get accounts (response)
- containers workspaces update accounts (request|response)
Fields§
§account_id: Option<String>GTM Account ID.
container_id: Option<String>GTM Container ID.
description: Option<String>Workspace description.
fingerprint: Option<String>The fingerprint of the GTM Workspace as computed at storage time. This value is recomputed whenever the workspace is modified.
name: Option<String>Workspace display name.
path: Option<String>GTM Workspace’s API relative path.
tag_manager_url: Option<String>Auto generated link to the tag manager UI
workspace_id: Option<String>The Workspace ID uniquely identifies the GTM Workspace.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Workspace
impl<'de> Deserialize<'de> for Workspace
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>,
Deserialize this value from the given Serde deserializer. Read more
impl RequestValue for Workspace
impl ResponseResult for Workspace
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnwindSafe for Workspace
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
Mutably borrows from an owned value. Read more