Class: Google::Apis::DfareportingV2_8::DimensionValue
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV2_8::DimensionValue
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DimensionValue
Returns a new instance of DimensionValue
      4806 4807 4808  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4806 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#dimension_name ⇒ String
The name of the dimension.
Corresponds to the JSON property dimensionName
      4775 4776 4777  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4775 def dimension_name @dimension_name end  | 
  
#etag ⇒ String
The eTag of this response for caching purposes.
Corresponds to the JSON property etag
      4780 4781 4782  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4780 def etag @etag end  | 
  
#id ⇒ String
The ID associated with the value if available.
Corresponds to the JSON property id
      4785 4786 4787  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4785 def id @id end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dimensionValue.
Corresponds to the JSON property kind
      4790 4791 4792  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4790 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
      4799 4800 4801  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4799 def match_type @match_type end  | 
  
#value ⇒ String
The value of the dimension.
Corresponds to the JSON property value
      4804 4805 4806  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4804 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4811 4812 4813 4814 4815 4816 4817 4818  | 
    
      # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 4811 def update!(**args) @dimension_name = args[:dimension_name] if args.key?(:dimension_name) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @match_type = args[:match_type] if args.key?(:match_type) @value = args[:value] if args.key?(:value) end  |