Class: Google::Apis::JobsV3p1beta1::CompensationHistogramResult
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3p1beta1::CompensationHistogramResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v3p1beta1/classes.rb,
lib/google/apis/jobs_v3p1beta1/representations.rb,
lib/google/apis/jobs_v3p1beta1/representations.rb
Overview
Output only. Compensation based histogram result.
Instance Attribute Summary collapse
-
#result ⇒ Google::Apis::JobsV3p1beta1::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.
Constructor Details
#initialize(**args) ⇒ CompensationHistogramResult
Returns a new instance of CompensationHistogramResult.
569 570 571 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#result ⇒ Google::Apis::JobsV3p1beta1::NumericBucketingResult
Output only. Custom numeric bucketing result.
Corresponds to the JSON property result
562 563 564 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 562 def result @result end |
#type ⇒ String
Type of the request, corresponding to CompensationHistogramRequest.type.
Corresponds to the JSON property type
567 568 569 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 567 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
574 575 576 577 |
# File 'lib/google/apis/jobs_v3p1beta1/classes.rb', line 574 def update!(**args) @result = args[:result] if args.key?(:result) @type = args[:type] if args.key?(:type) end |