Class: Google::Apis::JobsV2::HistogramResult
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::JobsV2::HistogramResult
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v2/classes.rb,
 generated/google/apis/jobs_v2/representations.rb,
 generated/google/apis/jobs_v2/representations.rb
Overview
Output only. Result of a histogram call. The response contains the histogram map for the search type specified by HistogramResult.field. The response is a map of each filter value to the corresponding count of jobs for that filter.
Instance Attribute Summary collapse
- 
  
    
      #search_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Histogram search filters. 
- 
  
    
      #values  ⇒ Hash<String,Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A map from the values of field to the number of jobs with that value in this search result. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HistogramResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HistogramResult. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HistogramResult
Returns a new instance of HistogramResult
| 1486 1487 1488 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1486 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#search_type ⇒ String
The Histogram search filters.
Corresponds to the JSON property searchType
| 1476 1477 1478 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1476 def search_type @search_type end | 
#values ⇒ Hash<String,Fixnum>
A map from the values of field to the number of jobs with that value
in this search result.
Key: search type (filter names, such as the companyName).
Values: the count of jobs that match the filter for this search.
Corresponds to the JSON property values
| 1484 1485 1486 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1484 def values @values end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1491 1492 1493 1494 | # File 'generated/google/apis/jobs_v2/classes.rb', line 1491 def update!(**args) @search_type = args[:search_type] if args.key?(:search_type) @values = args[:values] if args.key?(:values) end |