Class: Google::Apis::DfareportingV4::PathReportDimensionValue
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::PathReportDimensionValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Represents a PathReportDimensionValue resource.
Instance Attribute Summary collapse
-
#dimension_name ⇒ String
The name of the dimension.
-
#ids ⇒ Array<String>
The possible ID's associated with the value if available.
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting# pathReportDimensionValue.
-
#match_type ⇒ String
Determines how the 'value' field is matched when filtering.
-
#values ⇒ Array<String>
The possible values of the dimension.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathReportDimensionValue
constructor
A new instance of PathReportDimensionValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PathReportDimensionValue
Returns a new instance of PathReportDimensionValue.
8923 8924 8925 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8923 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_name ⇒ String
The name of the dimension.
Corresponds to the JSON property dimensionName
8896 8897 8898 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8896 def dimension_name @dimension_name end |
#ids ⇒ Array<String>
The possible ID's associated with the value if available.
Corresponds to the JSON property ids
8901 8902 8903 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8901 def ids @ids end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
pathReportDimensionValue.
Corresponds to the JSON property kind
8907 8908 8909 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8907 def kind @kind end |
#match_type ⇒ String
Determines how the 'value' field is matched when filtering. If not specified,
defaults to EXACT. If set to WILDCARD_EXPRESSION, '' is allowed as a
placeholder for variable length character sequences, and it can be escaped
with a backslash. Note, only paid search dimensions ('dfa:paidSearch') allow
a matchType other than EXACT.
Corresponds to the JSON property matchType
8916 8917 8918 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8916 def match_type @match_type end |
#values ⇒ Array<String>
The possible values of the dimension.
Corresponds to the JSON property values
8921 8922 8923 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8921 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8928 8929 8930 8931 8932 8933 8934 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8928 def update!(**args) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @ids = args[:ids] if args.key?(:ids) @kind = args[:kind] if args.key?(:kind) @match_type = args[:match_type] if args.key?(:match_type) @values = args[:values] if args.key?(:values) end |