Struct google_analytics3::FilterSearchAndReplaceDetails[][src]

pub struct FilterSearchAndReplaceDetails {
    pub case_sensitive: Option<bool>,
    pub field_index: Option<i32>,
    pub search_string: Option<String>,
    pub replace_string: Option<String>,
    pub field: Option<String>,
}

Details for the filter of the type SEARCH_AND_REPLACE.

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

Fields

Determines if the filter is case sensitive.

The Index of the custom dimension. Required if field is a CUSTOM_DIMENSION.

Term to search.

Term to replace the search term with.

Field to use in the filter.

Trait Implementations

impl Default for FilterSearchAndReplaceDetails
[src]

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

impl Clone for FilterSearchAndReplaceDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FilterSearchAndReplaceDetails
[src]

Formats the value using the given formatter. Read more

impl NestedType for FilterSearchAndReplaceDetails
[src]

impl Part for FilterSearchAndReplaceDetails
[src]

Auto Trait Implementations