Struct google_analytics3::GoalEventDetailsEventConditions[][src]

pub struct GoalEventDetailsEventConditions {
    pub expression: Option<String>,
    pub match_type: Option<String>,
    pub type_: Option<String>,
    pub comparison_type: Option<String>,
    pub comparison_value: Option<String>,
}

List of event conditions.

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

Fields

Expression used for this match.

Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.

Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.

Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.

Value used for this comparison.

Trait Implementations

impl Default for GoalEventDetailsEventConditions
[src]

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

impl Clone for GoalEventDetailsEventConditions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoalEventDetailsEventConditions
[src]

Formats the value using the given formatter. Read more

impl NestedType for GoalEventDetailsEventConditions
[src]

impl Part for GoalEventDetailsEventConditions
[src]

Auto Trait Implementations