Class: Google::Apis::DfareportingV3_4::PathReportDimensionValue
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::PathReportDimensionValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/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.
8723 8724 8725 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8723 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_name ⇒ String
The name of the dimension.
Corresponds to the JSON property dimensionName
8696 8697 8698 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8696 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
8701 8702 8703 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8701 def ids @ids end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
pathReportDimensionValue.
Corresponds to the JSON property kind
8707 8708 8709 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8707 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
8716 8717 8718 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8716 def match_type @match_type end |
#values ⇒ Array<String>
The possible values of the dimension.
Corresponds to the JSON property values
8721 8722 8723 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8721 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8728 8729 8730 8731 8732 8733 8734 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 8728 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 |