pub struct Folder {
pub account_id: Option<String>,
pub container_id: Option<String>,
pub fingerprint: Option<String>,
pub folder_id: Option<String>,
pub name: Option<String>,
pub notes: Option<String>,
pub path: Option<String>,
pub tag_manager_url: Option<String>,
pub workspace_id: Option<String>,
}Expand description
Represents a Google Tag Manager Folder.
§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 folders create accounts (request|response)
- containers workspaces folders get accounts (response)
- containers workspaces folders move_entities_to_folder accounts (request)
- containers workspaces folders update accounts (request|response)
Fields§
§account_id: Option<String>GTM Account ID.
container_id: Option<String>GTM Container ID.
fingerprint: Option<String>The fingerprint of the GTM Folder as computed at storage time. This value is recomputed whenever the folder is modified.
folder_id: Option<String>The Folder ID uniquely identifies the GTM Folder.
name: Option<String>Folder display name.
notes: Option<String>User notes on how to apply this folder in the container.
path: Option<String>GTM Folder’s API relative path.
tag_manager_url: Option<String>Auto generated link to the tag manager UI
workspace_id: Option<String>GTM Workspace ID.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Folder
impl<'de> Deserialize<'de> for Folder
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 Folder
impl ResponseResult for Folder
Auto Trait Implementations§
impl Freeze for Folder
impl RefUnwindSafe for Folder
impl Send for Folder
impl Sync for Folder
impl Unpin for Folder
impl UnwindSafe for Folder
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