Class: Google::Apis::DfareportingV2_1::DimensionValue
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::DimensionValue
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
Represents a DimensionValue resource.
Instance Attribute Summary collapse
-
#dimension_name ⇒ String
The name of the dimension.
-
#etag ⇒ String
The eTag of this response for caching purposes.
-
#id ⇒ String
The ID associated with the value if available.
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dimensionValue.
-
#match_type ⇒ String
Determines how the 'value' field is matched when filtering.
-
#value ⇒ String
The value of the dimension.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DimensionValue
constructor
A new instance of DimensionValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DimensionValue
Returns a new instance of DimensionValue
4189 4190 4191 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_name ⇒ String
The name of the dimension.
Corresponds to the JSON property dimensionName
4158 4159 4160 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4158 def dimension_name @dimension_name end |
#etag ⇒ String
The eTag of this response for caching purposes.
Corresponds to the JSON property etag
4163 4164 4165 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4163 def etag @etag end |
#id ⇒ String
The ID associated with the value if available.
Corresponds to the JSON property id
4168 4169 4170 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4168 def id @id end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dimensionValue.
Corresponds to the JSON property kind
4173 4174 4175 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4173 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
4182 4183 4184 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4182 def match_type @match_type end |
#value ⇒ String
The value of the dimension.
Corresponds to the JSON property value
4187 4188 4189 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4187 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4194 4195 4196 4197 4198 4199 4200 4201 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 4194 def update!(**args) @dimension_name = args[:dimension_name] unless args[:dimension_name].nil? @etag = args[:etag] unless args[:etag].nil? @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @match_type = args[:match_type] unless args[:match_type].nil? @value = args[:value] unless args[:value].nil? end |