Class: Google::Apis::JobsV2::CompensationHistogramResult
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::JobsV2::CompensationHistogramResult
 
- 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. Compensation based histogram result.
Instance Attribute Summary collapse
- 
  
    
      #result  ⇒ Google::Apis::JobsV2::NumericBucketingResult 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of the request, corresponding to CompensationHistogramRequest.type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CompensationHistogramResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CompensationHistogramResult. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompensationHistogramResult
Returns a new instance of CompensationHistogramResult
| 581 582 583 | # File 'generated/google/apis/jobs_v2/classes.rb', line 581 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#result ⇒ Google::Apis::JobsV2::NumericBucketingResult
Output only.
Custom numeric bucketing result.
Corresponds to the JSON property result
| 573 574 575 | # File 'generated/google/apis/jobs_v2/classes.rb', line 573 def result @result end | 
#type ⇒ String
Type of the request, corresponding to
CompensationHistogramRequest.type.
Corresponds to the JSON property type
| 579 580 581 | # File 'generated/google/apis/jobs_v2/classes.rb', line 579 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 586 587 588 589 | # File 'generated/google/apis/jobs_v2/classes.rb', line 586 def update!(**args) @result = args[:result] if args.key?(:result) @type = args[:type] if args.key?(:type) end |