Struct google_analyticsreporting4::DimensionFilter[][src]

pub struct DimensionFilter {
    pub dimension_name: Option<String>,
    pub case_sensitive: Option<bool>,
    pub expressions: Option<Vec<String>>,
    pub not: Option<bool>,
    pub operator: Option<String>,
}

Dimension filter specifies the filtering options on a dimension.

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

Fields

The dimension to filter on. A DimensionFilter must contain a dimension.

Should the match be case sensitive? Default is false.

Strings or regular expression to match against. Only the first value of the list is used for comparison unless the operator is IN_LIST. If IN_LIST operator, then the entire list is used to filter the dimensions as explained in the description of the IN_LIST operator.

Logical NOT operator. If this boolean is set to true, then the matching dimension values will be excluded in the report. The default is false.

How to match the dimension to the expression. The default is REGEXP.

Trait Implementations

impl Default for DimensionFilter
[src]

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

impl Clone for DimensionFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DimensionFilter
[src]

Formats the value using the given formatter. Read more

impl Part for DimensionFilter
[src]

Auto Trait Implementations