Struct google_analyticsreporting4::SegmentDimensionFilter[][src]

pub struct SegmentDimensionFilter {
    pub dimension_name: Option<String>,
    pub case_sensitive: Option<bool>,
    pub min_comparison_value: Option<String>,
    pub operator: Option<String>,
    pub expressions: Option<Vec<String>>,
    pub max_comparison_value: 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

Name of the dimension for which the filter is being applied.

Should the match be case sensitive, ignored for IN_LIST operator.

Minimum comparison values for BETWEEN match type.

The operator to use to match the dimension with the expressions.

The list of expressions, only the first element is used for all operators

Maximum comparison values for BETWEEN match type.

Trait Implementations

impl Default for SegmentDimensionFilter
[src]

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

impl Clone for SegmentDimensionFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SegmentDimensionFilter
[src]

Formats the value using the given formatter. Read more

impl Part for SegmentDimensionFilter
[src]

Auto Trait Implementations