Class: Google::Apis::PartnersV2::Rank
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PartnersV2::Rank
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/partners_v2/classes.rb,
 generated/google/apis/partners_v2/representations.rb,
 generated/google/apis/partners_v2/representations.rb
Overview
Information related to ranking of results.
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of rank. 
- 
  
    
      #value  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The numerical value of the rank. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Rank 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Rank. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rank
Returns a new instance of Rank
| 1863 1864 1865 | # File 'generated/google/apis/partners_v2/classes.rb', line 1863 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#type ⇒ String
The type of rank.
Corresponds to the JSON property type
| 1856 1857 1858 | # File 'generated/google/apis/partners_v2/classes.rb', line 1856 def type @type end | 
#value ⇒ Float
The numerical value of the rank.
Corresponds to the JSON property value
| 1861 1862 1863 | # File 'generated/google/apis/partners_v2/classes.rb', line 1861 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1868 1869 1870 1871 | # File 'generated/google/apis/partners_v2/classes.rb', line 1868 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |