Struct google_analyticsreporting4::DimensionFilter[][src]

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

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.

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

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.

Should the match be case sensitive? Default is false.

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