Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterStringFilter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb

Overview

A filter for a string-type dimension that matches a particular pattern.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterStringFilter

Returns a new instance of GoogleAnalyticsAdminV1alphaAudienceDimensionOrMetricFilterStringFilter.



1076
1077
1078
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1076

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#case_sensitiveBoolean Also known as: case_sensitive?

Optional. If true, the match is case-sensitive. If false, the match is case- insensitive. Corresponds to the JSON property caseSensitive

Returns:

  • (Boolean)


1063
1064
1065
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1063

def case_sensitive
  @case_sensitive
end

#match_typeString

Required. The match type for the string filter. Corresponds to the JSON property matchType

Returns:

  • (String)


1069
1070
1071
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1069

def match_type
  @match_type
end

#valueString

Required. The string value to be matched against. Corresponds to the JSON property value

Returns:

  • (String)


1074
1075
1076
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1074

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1081
1082
1083
1084
1085
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1081

def update!(**args)
  @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive)
  @match_type = args[:match_type] if args.key?(:match_type)
  @value = args[:value] if args.key?(:value)
end