Class: Google::Apis::JobsV3::CompensationHistogramResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v3/classes.rb,
generated/google/apis/jobs_v3/representations.rb,
generated/google/apis/jobs_v3/representations.rb

Overview

Output only. Compensation based histogram result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CompensationHistogramResult

Returns a new instance of CompensationHistogramResult.



568
569
570
# File 'generated/google/apis/jobs_v3/classes.rb', line 568

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#resultGoogle::Apis::JobsV3::NumericBucketingResult

Output only. Custom numeric bucketing result. Corresponds to the JSON property result



561
562
563
# File 'generated/google/apis/jobs_v3/classes.rb', line 561

def result
  @result
end

#typeString

Type of the request, corresponding to CompensationHistogramRequest.type. Corresponds to the JSON property type

Returns:

  • (String)


566
567
568
# File 'generated/google/apis/jobs_v3/classes.rb', line 566

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



573
574
575
576
# File 'generated/google/apis/jobs_v3/classes.rb', line 573

def update!(**args)
  @result = args[:result] if args.key?(:result)
  @type = args[:type] if args.key?(:type)
end