Struct google_tagmanager2::Variable[][src]

pub struct Variable {
    pub schedule_start_ms: Option<String>,
    pub schedule_end_ms: Option<String>,
    pub variable_id: Option<String>,
    pub container_id: Option<String>,
    pub enabling_trigger_id: Option<Vec<String>>,
    pub tag_manager_url: Option<String>,
    pub fingerprint: Option<String>,
    pub path: Option<String>,
    pub account_id: Option<String>,
    pub name: Option<String>,
    pub parameter: Option<Vec<Parameter>>,
    pub notes: Option<String>,
    pub workspace_id: Option<String>,
    pub type_: Option<String>,
    pub parent_folder_id: Option<String>,
    pub disabling_trigger_id: Option<Vec<String>>,
}

Represents a Google Tag Manager Variable.

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

The start timestamp in milliseconds to schedule a variable.

The end timestamp in milliseconds to schedule a variable.

The Variable ID uniquely identifies the GTM Variable.

GTM Container ID.

For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.

Auto generated link to the tag manager UI

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

GTM Variable's API relative path.

GTM Account ID.

Variable display name.

The variable's parameters.

User notes on how to apply this variable in the container.

GTM Workspace ID.

GTM Variable Type.

Parent folder id.

For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.

Trait Implementations

impl Default for Variable
[src]

Returns the "default value" for a type. Read more

impl Clone for Variable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Variable
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Variable
[src]

impl ResponseResult for Variable
[src]

Auto Trait Implementations

impl Send for Variable

impl Sync for Variable