Struct google_tagmanager1::Rule [] [src]

pub struct Rule {
    pub container_id: Option<String>,
    pub name: Option<String>,
    pub rule_id: Option<String>,
    pub notes: Option<String>,
    pub fingerprint: Option<String>,
    pub condition: Option<Vec<Condition>>,
    pub account_id: Option<String>,
}

Represents a Google Tag Manager Rule.

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

Fields

GTM Container ID.

Rule display name.

The Rule ID uniquely identifies the GTM Rule.

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

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

The list of conditions that make up this rule (implicit AND between them).

GTM Account ID.

Trait Implementations

impl Default for Rule
[src]

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

impl Clone for Rule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Rule
[src]

Formats the value using the given formatter.

impl Part for Rule
[src]