pub struct Transformation {
pub account_id: Option<String>,
pub container_id: Option<String>,
pub fingerprint: Option<String>,
pub name: Option<String>,
pub notes: Option<String>,
pub parameter: Option<Vec<Parameter>>,
pub parent_folder_id: Option<String>,
pub path: Option<String>,
pub tag_manager_url: Option<String>,
pub transformation_id: Option<String>,
pub type_: Option<String>,
pub workspace_id: Option<String>,
}Expand description
Represents a Google Tag Manager Transformation.
§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 transformations create accounts (request|response)
- containers workspaces transformations get accounts (response)
- containers workspaces transformations 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 Transformation as computed at storage time. This value is recomputed whenever the transformation is modified.
name: Option<String>Transformation display name.
notes: Option<String>User notes on how to apply this transformation in the container.
parameter: Option<Vec<Parameter>>The transformation’s parameters.
parent_folder_id: Option<String>Parent folder id.
path: Option<String>GTM transformation’s API relative path.
tag_manager_url: Option<String>Auto generated link to the tag manager UI
transformation_id: Option<String>The Transformation ID uniquely identifies the GTM transformation.
type_: Option<String>Transformation type.
workspace_id: Option<String>GTM Workspace ID.
Trait Implementations§
Source§impl Clone for Transformation
impl Clone for Transformation
Source§fn clone(&self) -> Transformation
fn clone(&self) -> Transformation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more